diff src/xmu.c @ 48:56c54cf7c5b6 r19-16b90

Import from CVS: tag r19-16b90
author cvs
date Mon, 13 Aug 2007 08:56:04 +0200
parents 0293115a14e9
children 131b0175ea99
line wrap: on
line diff
--- a/src/xmu.c	Mon Aug 13 08:55:32 2007 +0200
+++ b/src/xmu.c	Mon Aug 13 08:56:04 2007 +0200
@@ -167,7 +167,7 @@
 
 /* shared data for the image read/parse logic */
 static short hexTable[256];		/* conversion value */
-static Bool initialized = False;	/* easier to fill in at run time */
+static int hex_initialized;	/* easier to fill in at run time */
 
 
 /*
@@ -201,7 +201,7 @@
     hexTable['}'] = -1;	hexTable['\n'] = -1;
     hexTable['\t'] = -1;
 	
-    initialized = True;
+    hex_initialized = 1;
 }
 
 /*
@@ -268,7 +268,7 @@
 #endif
 
     /* first time initialization */
-    if (initialized == False) initHexTable();
+    if (!hex_initialized) initHexTable();
 
     /* error cleanup and return macro	*/
 #define	RETURN(code) { if (data) free (data); return code; }