diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-09-17 02:50:20 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-09-17 02:50:20 +0000 |
| commit | f85a85541790a6095eb583ddb8684eece8dcc0c6 (patch) | |
| tree | a0623f99955be30092477fde566235d0ef64b3bb /openbox/event.c | |
| parent | 275c44c386e937ed66cd2021b880a3d7d4de4933 (diff) | |
make ob_exit() take an error code. don't exit with 0 for signals other than TERM and INT.
Diffstat (limited to 'openbox/event.c')
| -rw-r--r-- | openbox/event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/event.c b/openbox/event.c index e566f01f..d1c27fd7 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -554,7 +554,7 @@ static void event_handle_root(XEvent *e) switch(e->type) { case SelectionClear: ob_debug("Another WM has requested to replace us. Exiting.\n"); - ob_exit(); + ob_exit(0); break; case ClientMessage: |
