diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2012-07-16 20:53:00 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2012-08-06 15:22:53 -0700 |
commit | 9f7ef7f7f0566f6319d8328ce0a1e6d0fa866720 (patch) | |
tree | e0b1ff6f4b4b8e0f3c1c7ec4f2673cc75de2404f /dix/gc.c | |
parent | c7b7abfaa068042e396d19538215402cfbb4f1e4 (diff) |
Fix up formatting of initializers for arrays of structs
The indenter seems to have gotten confused by initializing arrays of
structs with the struct defined inline - for predefined structs it did
a better job, so match that.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'dix/gc.c')
-rw-r--r-- | dix/gc.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -419,11 +419,11 @@ static const struct { RESTYPE type; Mask access_mode; } xidfields[] = { - { - GCTile, RT_PIXMAP, DixReadAccess}, { - GCStipple, RT_PIXMAP, DixReadAccess}, { - GCFont, RT_FONT, DixUseAccess}, { -GCClipMask, RT_PIXMAP, DixReadAccess},}; + {GCTile, RT_PIXMAP, DixReadAccess}, + {GCStipple, RT_PIXMAP, DixReadAccess}, + {GCFont, RT_FONT, DixUseAccess}, + {GCClipMask, RT_PIXMAP, DixReadAccess}, +}; int ChangeGCXIDs(ClientPtr client, GC * pGC, BITS32 mask, CARD32 *pC32) |