diff options
| author | Dana Jansens <danakj@orodu.net> | 2011-10-15 15:37:58 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2011-10-16 18:51:52 -0400 |
| commit | 0f18d0624db0729a67276b12e6073b48889edc21 (patch) | |
| tree | f62a717c030734a79b3eee293181515391c5bb99 /openbox | |
| parent | 3991e148e2acbc3da3b9c31e2459b20a4e598a03 (diff) | |
Check the return value for launching the startup command.
Copy/paste error?
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/openbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c index a7eb6a28..fbc01fdd 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -576,7 +576,7 @@ static void run_startup_cmd(void) G_SPAWN_SEARCH_PATH | G_SPAWN_DO_NOT_REAP_CHILD, NULL, NULL, NULL, &e); - if (!g_shell_parse_argv(startup_cmd, NULL, &argv, &e)) { + if (!ok) { g_message("Error launching startup command: %s", e->message); g_error_free(e); |
