diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/events.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2006-05-23 Shawn Betts <sabetts@vcn.bc.ca> + * src/events.c (handle_signals): pass NULL to execlp + * src/actions.c (spawn): pass NULL to execcl * src/xinerama.c (free_xinerama): take void arguments. prototype updated. diff --git a/src/events.c b/src/events.c index eb40ff0..5098ef0 100644 --- a/src/events.c +++ b/src/events.c @@ -932,7 +932,7 @@ handle_signals (void) putenv(current_screen()->display_string); unhide_all_windows(); XSync(dpy, False); - execlp(rp_exec_newwm, rp_exec_newwm, 0); + execlp(rp_exec_newwm, rp_exec_newwm, NULL); /* Failed. Clean up. */ PRINT_ERROR (("exec %s ", rp_exec_newwm)); |