- just use char instead of unsigned char for verbose line buffer

This commit is contained in:
MelwareDE 2006-05-12 16:48:09 +00:00
parent 4f14c385ae
commit 3d4e19f50c
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ extern char *capi_info_string(unsigned int info);
*/ */
void cc_verbose(int o_v, int c_d, char *text, ...) void cc_verbose(int o_v, int c_d, char *text, ...)
{ {
unsigned char line[4096]; char line[4096];
va_list ap; va_list ap;
va_start(ap, text); va_start(ap, text);