diff options
author | Paul Tagliamonte <paultag@fluxbox.org> | 2013-06-09 04:33:17 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2013-06-18 16:02:38 (GMT) |
commit | 34656ac6226af7866590fb02d75dbb87de2d5496 (patch) | |
tree | 2688abfc8cf482e47d0ddd8bea265e3843f9d535 /util | |
parent | 118ea25f9d581de6fc2c57dde7b8737cbba6faf4 (diff) | |
download | fluxbox-34656ac6226af7866590fb02d75dbb87de2d5496.zip fluxbox-34656ac6226af7866590fb02d75dbb87de2d5496.tar.bz2 |
Returning EXIT_FAILURE on exit in fluxbox-remote.
Diffstat (limited to 'util')
-rw-r--r-- | util/fluxbox-remote.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/fluxbox-remote.cc b/util/fluxbox-remote.cc index 340ac5b..0fcd118 100644 --- a/util/fluxbox-remote.cc +++ b/util/fluxbox-remote.cc | |||
@@ -57,6 +57,7 @@ int main(int argc, char **argv) { | |||
57 | disp = XOpenDisplay(NULL); | 57 | disp = XOpenDisplay(NULL); |
58 | if (!disp) { | 58 | if (!disp) { |
59 | perror("error, can't open display."); | 59 | perror("error, can't open display."); |
60 | rc = EXIT_FAILURE; | ||
60 | return rc; | 61 | return rc; |
61 | } | 62 | } |
62 | 63 | ||