diff options
author | Lauri Kasanen <cand@gmx.com> | 2013-03-24 17:28:19 +0200 |
---|---|---|
committer | Steve Bennett <steveb@workware.net.au> | 2013-03-25 08:35:09 +1000 |
commit | 0743ed996412e5e61a8701955b029183884410af (patch) | |
tree | 539e70e8fbd48381a185e652723c03824b99d526 | |
parent | 35eff1766cc2dd2528f70349ab5522247ed0b40c (diff) | |
download | jimtcl-0743ed996412e5e61a8701955b029183884410af.zip jimtcl-0743ed996412e5e61a8701955b029183884410af.tar.gz jimtcl-0743ed996412e5e61a8701955b029183884410af.tar.bz2 |
Shuffle ScanFmtPartDescr to reduce size (40 -> 32)
Signed-off-by: Lauri Kasanen <cand@gmx.com>
-rw-r--r-- | jim.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -9329,12 +9329,12 @@ int Jim_GetBoolFromExpr(Jim_Interp *interp, Jim_Obj *exprObjPtr, int *boolPtr) typedef struct ScanFmtPartDescr { - char type; /* Type of conversion (e.g. c, d, f) */ - char modifier; /* Modify type (e.g. l - long, h - short */ - size_t width; /* Maximal width of input to be converted */ - int pos; /* -1 - no assign, 0 - natural pos, >0 - XPG3 pos */ char *arg; /* Specification of a CHARSET conversion */ char *prefix; /* Prefix to be scanned literally before conversion */ + size_t width; /* Maximal width of input to be converted */ + int pos; /* -1 - no assign, 0 - natural pos, >0 - XPG3 pos */ + char type; /* Type of conversion (e.g. c, d, f) */ + char modifier; /* Modify type (e.g. l - long, h - short */ } ScanFmtPartDescr; /* The ScanFmtStringObj will hold the internal representation of a scanformat |