--- code/trunk/maketables.c 2007/02/24 21:38:53 29 +++ code/trunk/maketables.c 2007/02/24 21:39:09 37 @@ -65,9 +65,9 @@ int i; #ifndef DFTABLES -yield = (pcre_malloc)(tables_length); +yield = (unsigned char*)(pcre_malloc)(tables_length); #else -yield = malloc(tables_length); +yield = (unsigned char*)malloc(tables_length); #endif if (yield == NULL) return NULL;