aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/expand.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/posix/expand.c')
-rw-r--r--toys/posix/expand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/posix/expand.c b/toys/posix/expand.c
index d4914ab5..301d361e 100644
--- a/toys/posix/expand.c
+++ b/toys/posix/expand.c
@@ -26,7 +26,7 @@ config EXPAND
#include "toys.h"
GLOBALS(
- struct arg_list *tabs;
+ struct arg_list *t;
unsigned tabcount, *tab;
)
@@ -93,7 +93,7 @@ static int parse_tablist(unsigned *tablist)
struct arg_list *tabs;
int tabcount = 0;
- for (tabs = TT.tabs; tabs; tabs = tabs->next) {
+ for (tabs = TT.t; tabs; tabs = tabs->next) {
char *s = tabs->arg;
while (*s) {