From 61174d1960c50bdccee05d302666dab6ab770846 Mon Sep 17 00:00:00 2001 From: Hallvard Furuseth Date: Fri, 5 Mar 1999 01:04:56 +0000 Subject: [PATCH] Cast char* argument to hh_to_c() to Byte* --- libraries/libldap/charset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/libldap/charset.c b/libraries/libldap/charset.c index 20a9db5306..a3618923b1 100644 --- a/libraries/libldap/charset.c +++ b/libraries/libldap/charset.c @@ -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 -- 2.39.5