From ab3a815a75ab5695753fa37a98b0ea5293d4cb91 Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Thu, 15 Mar 2012 15:18:29 +0000 Subject: Indentation: Change '& stuff' to '&stuff' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- dbe/dbe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dbe') diff --git a/dbe/dbe.c b/dbe/dbe.c index 19a861822..ca7f3e278 100644 --- a/dbe/dbe.c +++ b/dbe/dbe.c @@ -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)); -- cgit v1.2.3