diff options
| author | 2015-11-22 13:44:31 +0100 | |
|---|---|---|
| committer | 2015-11-22 13:44:31 +0100 | |
| commit | cdc80731fba6ce33bf6803009bf2b838b3be8192 (patch) | |
| tree | 09c6856312a88be88dc0d23f48e0958a8c0ea6c2 /surf.c | |
| parent | Modify default handling of cookiepolicy functions (diff) | |
Fix error handling in spawn()
Be more specific about process name and exit with an error.
Diffstat (limited to '')
| -rw-r--r-- | surf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -643,9 +643,9 @@ spawn(Client *c, const Arg *a) close(ConnectionNumber(dpy)); setsid(); execvp(((char **)a->v)[0], (char **)a->v); - fprintf(stderr, "surf: execvp %s", ((char **)a->v)[0]); + fprintf(stderr, "%s: execvp %s", argv0, ((char **)a->v)[0]); perror(" failed"); - exit(0); + exit(1); } } |
