diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2011-07-11 03:33:06 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2011-07-11 03:33:06 +0200 |
commit | accb2b4aa518bb2bbddecf42fbc3f60a8a3f8fda (patch) | |
tree | 521661ae1bd967b1c60887cd8f3217195a9fcb16 | |
parent | 76c1a05f2b7389b9ca01d8af125382fc0a646faa (diff) | |
download | videoteco-fork-accb2b4aa518bb2bbddecf42fbc3f60a8a3f8fda.tar.gz |
avoid missing sentinel warning on GCC
-rw-r--r-- | teccmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1772,7 +1772,7 @@ int buf_pipe[2]; close(2); dup(pipe_desc[1]); close(pipe_desc[0]); close(pipe_desc[1]); - execl("/bin/bash","bash","-c",cp,0); + execl("/bin/bash","bash","-c",cp,NULL); _exit(127); }/* End IF */ #else |