aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/expand.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2018-08-31 15:02:21 -0500
committerRob Landley <rob@landley.net>2018-08-31 15:14:12 -0500
commit8993496e496cdbc80643b69d049d05bbd7f596b3 (patch)
tree8790f2ada6dfdc0e98265672cac9b8ae07bfce56 /toys/posix/expand.c
parent198b2b48345c175dc184258677fd48043dc1a78b (diff)
downloadtoybox-8993496e496cdbc80643b69d049d05bbd7f596b3.tar.gz
Convert option style.
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) {