diff options
author | Daniel Stone <daniel@fooishbar.org> | 2012-03-15 15:18:29 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-03-21 14:02:30 -0700 |
commit | ab3a815a75ab5695753fa37a98b0ea5293d4cb91 (patch) | |
tree | a8fd1cf44108245b42ba409944be962ac060098d /dbe | |
parent | 58b1f739d73b03ff7952ca986ed8746a7307fffe (diff) |
Indentation: Change '& stuff' to '&stuff'
If the typedef wasn't perfect, indent would get confused and change:
foo = (SomePointlessTypedef *) &stuff[1];
to:
foo = (SomePointlessTypedef *) & stuff[1];
Fix this up with a really naïve sed script, plus some hand-editing to
change some false positives in XKB back.
Signed-off-by: Daniel Stone <daniel@fooishbar.org>
Diffstat (limited to 'dbe')
-rw-r--r-- | dbe/dbe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -467,7 +467,7 @@ ProcDbeSwapBuffers(ClientPtr client) return BadAlloc; /* Get to the swap info appended to the end of the request. */ - dbeSwapInfo = (xDbeSwapInfo *) & stuff[1]; + dbeSwapInfo = (xDbeSwapInfo *) &stuff[1]; /* Allocate array to record swap information. */ swapInfo = (DbeSwapInfoPtr) malloc(nStuff * sizeof(DbeSwapInfoRec)); |