summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xcurtis/.bin/pbd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/curtis/.bin/pbd.c b/curtis/.bin/pbd.c
index 47860a85..01e5c07d 100755
--- a/curtis/.bin/pbd.c
+++ b/curtis/.bin/pbd.c
@@ -38,7 +38,7 @@ static void spawn(const char *cmd, int childFd, int parentFd) {
         int fd = dup2(parentFd, childFd);
         if (fd < 0) err(EX_OSERR, "dup2");
 
-        int error = execlp(cmd, cmd);
+        int error = execlp(cmd, cmd, NULL);
         if (error) err(EX_OSERR, "execlp");
     }
 }