diff options
-rw-r--r-- | tterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -97,7 +97,7 @@ main(int argc, char *argv[]) if (pidatom == None) die("no _NET_WM_PID atom found\n"); /* start terminal */ - if ((child = fork()) == 0) { + if ((child = vfork()) == 0) { execlp(ARGV, NULL); err(1, "execvp"); } |