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/renice.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toys/posix/renice.c') diff --git a/toys/posix/renice.c b/toys/posix/renice.c index 489eb138..c1167c8c 100644 --- a/toys/posix/renice.c +++ b/toys/posix/renice.c @@ -17,7 +17,7 @@ config RENICE #include "toys.h" GLOBALS( - long nArgu; + long n; ) void renice_main(void) { @@ -42,7 +42,7 @@ void renice_main(void) { continue; } - if (setpriority(which, id, getpriority(which, id)+TT.nArgu) < 0) + if (setpriority(which, id, getpriority(which, id)+TT.n) < 0) perror_msg("setpriority %d", id); } } -- cgit v1.2.3