summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/unistd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/unistd.h b/src/include/unistd.h
index 9dd51dcd7..f3412d400 100644
--- a/src/include/unistd.h
+++ b/src/include/unistd.h
@@ -16,7 +16,7 @@ extern int execv ( const char *command, char * const argv[] );
* This is a front end to execv().
*/
#define execl( command, arg, ... ) ( { \
- char * const argv[] = { (arg), ## __VA_ARGS__, NULL }; \
+ char * const argv[] = { (arg), ## __VA_ARGS__ }; \
int rc = execv ( (command), argv ); \
rc; \
} )