diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:01 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:01 +0000 |
commit | accddd883e25b4899dfe6945d87f11724accbd78 (patch) | |
tree | 1df76f57ace1db48defcb54b48486c81c0b01985 /b4light.c | |
parent | b6c4d1d1a6d7dd2f2501557ec34746f3f8bb99d7 (diff) |
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_903_specialxf86-4_3_99_902xf86-4_3_99_901xf86-4_3_99_16xf86-012804-2330
Diffstat (limited to 'b4light.c')
-rw-r--r-- | b4light.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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 |