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 b7bff6a52..328531528 100644 --- a/coreutils/nice.c +++ b/coreutils/nice.c @@ -47,7 +47,7 @@ int nice_main(int argc, char **argv) } } - execvp(*argv, argv); /* Now exec the desired program. */ + BB_EXECVP(*argv, argv); /* Now exec the desired program. */ /* The exec failed... */ xfunc_error_retval = (errno == ENOENT) ? 127 : 126; /* SUSv3 */ |