From 482c422f8e8ec517de071266d425b425c4628103 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 25 Aug 2018 15:32:22 -0500 Subject: Convert more argument variables in GLOBALS() to new style. --- toys/posix/strings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toys/posix/strings.c') diff --git a/toys/posix/strings.c b/toys/posix/strings.c index 911fc452..e33ae960 100644 --- a/toys/posix/strings.c +++ b/toys/posix/strings.c @@ -32,13 +32,13 @@ config STRINGS #include "toys.h" GLOBALS( - long num; + long n; char *t; ) static void do_strings(int fd, char *filename) { - int nread, i, wlen = TT.num, count = 0; + int nread, i, wlen = TT.n, count = 0; off_t offset = 0; char *string = 0, pattern[8]; -- cgit v1.2.3