diff options
author | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-01-04 22:32:48 +0100 |
---|---|---|
committer | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-01-04 22:33:42 +0100 |
commit | 9605acd380c6cb2835905996cc04ffc7007f0db7 (patch) | |
tree | e9521bc4587c0dcbec89916504fb6b9198c81703 /plugins | |
parent | 5ac5ad837c92e106a7230b88a4a226795239bde6 (diff) |
added missing "return 0" in few places
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/gtkui/gtkui.c | 1 | ||||
-rw-r--r-- | plugins/shellexec/shellexec.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/plugins/gtkui/gtkui.c b/plugins/gtkui/gtkui.c index 602d0df8..52ac3306 100644 --- a/plugins/gtkui/gtkui.c +++ b/plugins/gtkui/gtkui.c @@ -1129,6 +1129,7 @@ gtkui_thread (void *ctx) { gtk_widget_destroy (searchwin); searchwin = NULL; } + return 0; } gboolean diff --git a/plugins/shellexec/shellexec.c b/plugins/shellexec/shellexec.c index 99bb4715..0bd5d1d2 100644 --- a/plugins/shellexec/shellexec.c +++ b/plugins/shellexec/shellexec.c @@ -90,6 +90,7 @@ static int shx_exec_track_cmd (Shx_action_t *action, DB_playItem_t *it) { strcat (cmd, "&"); trace ("%s\n", cmd); res = system (cmd); + return 0; } static int |