fix breakage found by randomconfig

This commit is contained in:
Denis Vlasenko
2008-06-23 22:31:52 +00:00
parent 211b59be43
commit cc3f20b9bd
7 changed files with 20 additions and 15 deletions

View File

@@ -171,8 +171,8 @@ enum {
/* memset: we have to zero it out because of NOEXEC */
#define INIT_G() { \
memset(&G, 0, sizeof(G)); \
tabstops = COLUMN_GAP; \
terminal_width = TERMINAL_WIDTH; \
USE_FEATURE_AUTOWIDTH(tabstops = COLUMN_GAP;) \
USE_FEATURE_AUTOWIDTH(terminal_width = TERMINAL_WIDTH;) \
USE_FEATURE_LS_TIMESTAMPS(time(&current_time_t);) \
}