Cast char* argument to hh_to_c() to Byte*

This commit is contained in:
Hallvard Furuseth 1999-03-05 01:04:56 +00:00
parent 921158f6fc
commit 61174d1960

View File

@ -1676,7 +1676,7 @@ char *s;
while ( *s ) {
if ( *s == '\\' ) {
if ( (c = hh_to_c( ++s )) != -1 ) {
if ( (c = hh_to_c( (Byte *) ++s )) != -1 ) {
*o++ = c;
s += 2;
} else