diff options
Diffstat (limited to 'coreutils/nice.c')
-rw-r--r-- | coreutils/nice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/nice.c b/coreutils/nice.c index 28591ac61..e70da5d2b 100644 --- a/coreutils/nice.c +++ b/coreutils/nice.c | |||
@@ -33,7 +33,7 @@ int nice_main(int argc UNUSED_PARAM, char **argv) | |||
33 | 33 | ||
34 | if (!*++argv) { /* No args, so (GNU) output current nice value. */ | 34 | if (!*++argv) { /* No args, so (GNU) output current nice value. */ |
35 | printf("%d\n", old_priority); | 35 | printf("%d\n", old_priority); |
36 | fflush_stdout_and_exit(EXIT_SUCCESS); | 36 | fflush_stdout_and_exit_SUCCESS(); |
37 | } | 37 | } |
38 | 38 | ||
39 | adjustment = 10; /* Set default adjustment. */ | 39 | adjustment = 10; /* Set default adjustment. */ |