From 3c77d9da4e090b177425d720f2ce0aa7083f2953 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 5 Sep 2017 22:38:55 -0400 Subject: Pass final NULL to execlp --- home/.bin/pbd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'home/.bin') diff --git a/home/.bin/pbd.c b/home/.bin/pbd.c index 47860a85..01e5c07d 100755 --- a/home/.bin/pbd.c +++ b/home/.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"); } } -- cgit 1.4.1