diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:03 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:03 +0000 |
commit | 8dcf7ae639f46e982131632b7cc0c37a8fd4ee97 (patch) | |
tree | d54c4a10f0a63ad262470fee274627513e202f07 | |
parent | f2fc3bc2312c7af4f0cd5fee2e08be7c0ca115b3 (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
-rw-r--r-- | xbiff.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -28,7 +28,7 @@ other dealings in this Software without prior written authorization from the X Consortium. */ -/* $XFree86: xc/programs/xbiff/xbiff.c,v 1.3 2000/02/17 14:00:34 dawes Exp $ */ +/* $XFree86: xc/programs/xbiff/xbiff.c,v 1.4 2003/05/27 22:26:59 tsi Exp $ */ #include <stdio.h> #include <stdlib.h> @@ -98,7 +98,7 @@ main (argc, argv) char **argv; { XtAppContext xtcontext; - Widget toplevel, w; + Widget toplevel; ProgramName = argv[0]; @@ -118,8 +118,8 @@ main (argc, argv) XtOverrideTranslations(toplevel, XtParseTranslationTable ("<Message>WM_PROTOCOLS: quit()")); - w = XtCreateManagedWidget ("mailbox", mailboxWidgetClass, toplevel, - NULL, 0); + (void) XtCreateManagedWidget ("mailbox", mailboxWidgetClass, toplevel, + NULL, 0); XtRealizeWidget (toplevel); (void) XSetWMProtocols (XtDisplay(toplevel), XtWindow(toplevel), &wm_delete_window, 1); |