--- code/trunk/maketables.c 2007/02/24 21:38:49 27 +++ code/trunk/maketables.c 2007/02/24 21:39:09 37 @@ -24,6 +24,10 @@ 3. Altered versions must be plainly marked as such, and must not be misrepresented as being the original software. + +4. If PCRE is embedded in any software that is released under the GNU + General Purpose Licence (GPL), then the terms of that licence shall + supersede any condition above with which it is incompatible. ----------------------------------------------------------------------------- See the file Tech.Notes for some information on the internals. @@ -61,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;