diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-27 18:41:59 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-27 18:41:59 +0000 |
commit | 574f2f43948bb21d6e4187936ba5a5afccba25f6 (patch) | |
tree | 0b39aca564149e5ad30b3cc791228655ff1b1827 /util-linux/script.c | |
parent | fe66a0eca1bfeae0abc0fc1e7d3709f271e05e82 (diff) | |
download | busybox-w32-574f2f43948bb21d6e4187936ba5a5afccba25f6.tar.gz busybox-w32-574f2f43948bb21d6e4187936ba5a5afccba25f6.tar.bz2 busybox-w32-574f2f43948bb21d6e4187936ba5a5afccba25f6.zip |
*: add optimization barrier to all "G trick" locations
Diffstat (limited to 'util-linux/script.c')
-rw-r--r-- | util-linux/script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/script.c b/util-linux/script.c index fda726ed9..e6dbb1aa2 100644 --- a/util-linux/script.c +++ b/util-linux/script.c | |||
@@ -25,7 +25,7 @@ struct globals { | |||
25 | #define tt (G.tt ) | 25 | #define tt (G.tt ) |
26 | #define fname (G.fname ) | 26 | #define fname (G.fname ) |
27 | #define INIT_G() do { \ | 27 | #define INIT_G() do { \ |
28 | PTR_TO_GLOBALS = xzalloc(sizeof(G)); \ | 28 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
29 | fname = "typescript"; \ | 29 | fname = "typescript"; \ |
30 | } while (0) | 30 | } while (0) |
31 | 31 | ||