aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLauri Kasanen <cand@gmx.com>2013-03-24 17:28:19 +0200
committerSteve Bennett <steveb@workware.net.au>2013-03-25 08:35:09 +1000
commit0743ed996412e5e61a8701955b029183884410af (patch)
tree539e70e8fbd48381a185e652723c03824b99d526
parent35eff1766cc2dd2528f70349ab5522247ed0b40c (diff)
downloadjimtcl-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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/jim.c b/jim.c
index d7b8b6d..eab29a0 100644
--- a/jim.c
+++ b/jim.c
@@ -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