summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-03-04 20:42:22 +0000
committerDana Jansens <danakj@orodu.net>2007-03-04 20:42:22 +0000
commitca9fe26a6b169c905d990c55a642ba5f00a791a0 (patch)
tree738301f09efc9af0ef52ff1e21634e9c895ae0ae
parent7fdfb9dbf63a6d3b4d0e682b789bc541c8de09b7 (diff)
use EXIT_SUCCESS. it's the same thing, but more correct.
-rw-r--r--openbox/openbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c
index eb5909a1..5e2c34e5 100644
--- a/openbox/openbox.c
+++ b/openbox/openbox.c
@@ -137,7 +137,7 @@ gint main(gint argc, gchar **argv)
PROP_MSG(RootWindow(ob_display, ob_screen),
ob_control, remote_control, 0, 0, 0);
XCloseDisplay(ob_display);
- exit(0);
+ exit(EXIT_SUCCESS);
}
ob_main_loop = ob_main_loop_new(ob_display);