diff src/xmu.c @ 120:cca96a509cfe r20-1b12

Import from CVS: tag r20-1b12
author cvs
date Mon, 13 Aug 2007 09:25:29 +0200
parents 54cc21c15cbb
children 0132846995bd
line wrap: on
line diff
--- a/src/xmu.c	Mon Aug 13 09:24:19 2007 +0200
+++ b/src/xmu.c	Mon Aug 13 09:25:29 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; }