summaryrefslogtreecommitdiff
path: root/openbox/openbox.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-07-10 19:40:22 +0000
committerDana Jansens <danakj@orodu.net>2003-07-10 19:40:22 +0000
commit3044e8713197ad2a4ef680445c9a4d367aa5b0a6 (patch)
tree6850f33826c6ce03d6896dba0244ee3c53a0034a /openbox/openbox.c
parenta95dc346fe7951dd48e41a41fcaafb6d872b0337 (diff)
sync is in unistd.h
Diffstat (limited to 'openbox/openbox.c')
-rw-r--r--openbox/openbox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c
index 40e3ef8b..73b9615c 100644
--- a/openbox/openbox.c
+++ b/openbox/openbox.c
@@ -63,7 +63,7 @@ Cursor ob_cursors[OB_NUM_CURSORS];
KeyCode ob_keys[OB_NUM_KEYS];
static ObState state;
-static gboolean sync;
+static gboolean xsync;
static gboolean shutdown;
static gboolean restart;
static char *restart_path;
@@ -153,7 +153,7 @@ int main(int argc, char **argv)
/* XXX fork self onto other screens */
- XSynchronize(ob_display, sync);
+ XSynchronize(ob_display, xsync);
/* check for locale support */
if (!XSupportsLocale())
@@ -524,7 +524,7 @@ static void parse_args(int argc, char **argv)
print_help();
exit(0);
} else if (!strcmp(argv[i], "--sync")) {
- sync = TRUE;
+ xsync = TRUE;
#ifdef USE_SM
} else if (!strcmp(argv[i], "--sm-client-id")) {
if (i == argc - 1) /* no args left */