preproc: Reorder SMacro members to eliminate padding
authorCyrill Gorcunov <gorcunov@gmail.com>
Sun, 17 Jul 2011 16:06:20 +0000 (20:06 +0400)
committerCyrill Gorcunov <gorcunov@gmail.com>
Sun, 17 Jul 2011 16:06:20 +0000 (20:06 +0400)
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
preproc.c

index 3353b28..9173d9a 100644 (file)
--- a/preproc.c
+++ b/preproc.c
@@ -105,12 +105,12 @@ typedef struct IncPath IncPath;
  * Store the definition of a single-line macro.
  */
 struct SMacro {
-    SMacro *next;
-    char *name;
-    bool casesense;
-    bool in_progress;
-    unsigned int nparam;
-    Token *expansion;
+    SMacro          *next;
+    char            *name;
+    Token           *expansion;
+    unsigned int    nparam;
+    bool            casesense;
+    bool            in_progress;
 };
 
 /*