From 10083ae95398bd28acf5b3c76c954c8563b41830 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Sun, 17 Jul 2011 20:06:20 +0400 Subject: [PATCH] preproc: Reorder SMacro members to eliminate padding Signed-off-by: Cyrill Gorcunov --- preproc.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/preproc.c b/preproc.c index 3353b287..9173d9a9 100644 --- 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; }; /* -- 2.11.4.GIT