diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-09-21 01:59:15 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-09-21 01:59:15 +0200 |
commit | 16714245f9a16ce3725aab079aea7b0d28c6b32f (patch) | |
tree | 41edbcd1c279b2baae2d5e5751639076e0a3bfad /coreutils/expr.c | |
parent | 5c6ba6c56f9653488e1d805e727bb06c39ed23fa (diff) | |
download | busybox-w32-16714245f9a16ce3725aab079aea7b0d28c6b32f.tar.gz busybox-w32-16714245f9a16ce3725aab079aea7b0d28c6b32f.tar.bz2 busybox-w32-16714245f9a16ce3725aab079aea7b0d28c6b32f.zip |
add INIT_G()'s. No code changes.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/expr.c')
-rw-r--r-- | coreutils/expr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c index 24e75b556..c986f9327 100644 --- a/coreutils/expr.c +++ b/coreutils/expr.c | |||
@@ -100,6 +100,7 @@ struct globals { | |||
100 | char **args; | 100 | char **args; |
101 | } FIX_ALIASING; | 101 | } FIX_ALIASING; |
102 | #define G (*(struct globals*)&bb_common_bufsiz1) | 102 | #define G (*(struct globals*)&bb_common_bufsiz1) |
103 | #define INIT_G() do { } while (0) | ||
103 | 104 | ||
104 | /* forward declarations */ | 105 | /* forward declarations */ |
105 | static VALUE *eval(void); | 106 | static VALUE *eval(void); |
@@ -519,6 +520,8 @@ int expr_main(int argc UNUSED_PARAM, char **argv) | |||
519 | { | 520 | { |
520 | VALUE *v; | 521 | VALUE *v; |
521 | 522 | ||
523 | INIT_G(); | ||
524 | |||
522 | xfunc_error_retval = 2; /* coreutils compat */ | 525 | xfunc_error_retval = 2; /* coreutils compat */ |
523 | G.args = argv + 1; | 526 | G.args = argv + 1; |
524 | if (*G.args == NULL) { | 527 | if (*G.args == NULL) { |