From 503e6362290d56bce0ed71f8164f24e25108bbbc Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 17 Nov 2018 18:25:08 -0600 Subject: Convert more GLOBALS argument vars to the new single letter code style. --- toys/other/base64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toys/other') 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'); }; -- cgit v1.2.3