diff options
author | Denis Vlasenko | 2008-02-27 18:41:59 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-02-27 18:41:59 +0000 |
commit | 574f2f43948bb21d6e4187936ba5a5afccba25f6 (patch) | |
tree | 0b39aca564149e5ad30b3cc791228655ff1b1827 /miscutils | |
parent | fe66a0eca1bfeae0abc0fc1e7d3709f271e05e82 (diff) | |
download | busybox-574f2f43948bb21d6e4187936ba5a5afccba25f6.zip busybox-574f2f43948bb21d6e4187936ba5a5afccba25f6.tar.gz |
*: add optimization barrier to all "G trick" locations
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/less.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/miscutils/less.c b/miscutils/less.c index da595f4..8d4f7ec 100644 --- a/miscutils/less.c +++ b/miscutils/less.c @@ -153,14 +153,14 @@ struct globals { #define term_orig (G.term_orig ) #define term_less (G.term_less ) #define INIT_G() do { \ - PTR_TO_GLOBALS = xzalloc(sizeof(G)); \ - less_gets_pos = -1; \ - empty_line_marker = "~"; \ - num_files = 1; \ - current_file = 1; \ - eof_error = 1; \ - terminated = 1; \ - } while (0) + SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ + less_gets_pos = -1; \ + empty_line_marker = "~"; \ + num_files = 1; \ + current_file = 1; \ + eof_error = 1; \ + terminated = 1; \ +} while (0) /* Reset terminal input to normal */ static void set_tty_cooked(void) |