diff options
author | Rob Landley <rob@landley.net> | 2018-11-17 18:25:08 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-11-17 18:25:08 -0600 |
commit | 503e6362290d56bce0ed71f8164f24e25108bbbc (patch) | |
tree | 06d962fb5a547aa07f387d879cb28ff84fd23b78 /toys/other | |
parent | 7d26f1071d17dc2980280008fbbcd8a6a376d387 (diff) | |
download | toybox-503e6362290d56bce0ed71f8164f24e25108bbbc.tar.gz |
Convert more GLOBALS argument vars to the new single letter code style.
Diffstat (limited to 'toys/other')
-rw-r--r-- | toys/other/base64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/other/base64.c b/toys/other/base64.c index 33155bc5..87887cda 100644 --- a/toys/other/base64.c +++ b/toys/other/base64.c @@ -23,7 +23,7 @@ config BASE64 #include "toys.h" GLOBALS( - long columns; + long w; unsigned total; ) @@ -32,7 +32,7 @@ static void wraputchar(int c, int *x) { putchar(c); TT.total++; - if (TT.columns && ++*x == TT.columns) { + if (TT.w && ++*x == TT.w) { *x = 0; xputc('\n'); }; |