diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-03 20:28:06 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-03 20:28:06 +0000 |
commit | 40920825d59874cf285390434486e88c8498d2d8 (patch) | |
tree | 1bf7d7300ac410608a50b2c402966d492373ff24 /coreutils/nice.c | |
parent | b6332248ca4d781b4142fb9b6fe7e97a4a9ad59d (diff) | |
download | busybox-w32-40920825d59874cf285390434486e88c8498d2d8.tar.gz busybox-w32-40920825d59874cf285390434486e88c8498d2d8.tar.bz2 busybox-w32-40920825d59874cf285390434486e88c8498d2d8.zip |
rename bb_default_error_retval -> xfunc_error_retval
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 ad0178b7f..4c54dddbb 100644 --- a/coreutils/nice.c +++ b/coreutils/nice.c | |||
@@ -67,6 +67,6 @@ int nice_main(int argc, char **argv) | |||
67 | execvp(*argv, argv); /* Now exec the desired program. */ | 67 | execvp(*argv, argv); /* Now exec the desired program. */ |
68 | 68 | ||
69 | /* The exec failed... */ | 69 | /* The exec failed... */ |
70 | bb_default_error_retval = (errno == ENOENT) ? 127 : 126; /* SUSv3 */ | 70 | xfunc_error_retval = (errno == ENOENT) ? 127 : 126; /* SUSv3 */ |
71 | bb_perror_msg_and_die("%s", *argv); | 71 | bb_perror_msg_and_die("%s", *argv); |
72 | } | 72 | } |