summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaleb Keithley <kaleb@freedesktop.org>2003-11-26 22:49:08 +0000
committerKaleb Keithley <kaleb@freedesktop.org>2003-11-26 22:49:08 +0000
commita9ea794c9432eb5abb7d222e032f9cec0870f89a (patch)
tree1df76f57ace1db48defcb54b48486c81c0b01985
parent0750e89e4a2b1e5d9f909eeaa4dd2c0294a3947e (diff)
merge latest (4.3.99.16) from XFree86 (vendor) branchXORG-RELEASE-1-BASEXEVIE-MERGEXEVIE-BASEXINERAMA_2XEVIE
-rw-r--r--b4light.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/b4light.c b/b4light.c
index 18263cd..6db65af 100644
--- a/b4light.c
+++ b/b4light.c
@@ -26,7 +26,7 @@ in this Software without prior written authorization from the X Consortium.
*
* Author: Keith Packard, MIT X Consortium
*/
-/* $XFree86: xc/programs/beforelight/b4light.c,v 3.6 2003/02/17 23:43:25 herrb Exp $ */
+/* $XFree86: xc/programs/beforelight/b4light.c,v 3.7 2003/10/24 20:38:10 tsi Exp $ */
#include <X11/Xatom.h>
#include <X11/Intrinsic.h>
@@ -60,7 +60,6 @@ static Colormap cmap;
static GC gc, black_gc, erase_gc;
static int screen_saved;
static XtAppContext app_con;
-static XtIntervalId interval;
static GC bit_1_gc, bit_0_gc;
static Bool filled = False;
@@ -247,7 +246,7 @@ Timeout (XtPointer closure, XtIntervalId *id)
if (screen_saved)
{
StepPoints ();
- interval = XtAppAddTimeOut (app_con, 50, Timeout, NULL);
+ (void) XtAppAddTimeOut (app_con, 50, Timeout, NULL);
}
}
@@ -259,7 +258,7 @@ StartSaver (void)
screen_saved = True;
StartPoints ();
StepPoints ();
- interval = XtAppAddTimeOut (app_con, 50, Timeout, NULL);
+ (void) XtAppAddTimeOut (app_con, 50, Timeout, NULL);
}
static void