Fix char* -> unsigned char* conversion error

This commit is contained in:
Zeex 2018-11-18 19:08:56 +06:00
parent 709ee95309
commit 9fed28a24b

View File

@ -546,7 +546,7 @@ int pc_compile(int argc, char *argv[])
while (pc_readsrc(fsrc,tstring,sizeof tstring)!=NULL) {
pc_writesrc(ftmp,tstring);
} /* while */
pc_writesrc(ftmp,"\n");
pc_writesrc(ftmp,(unsigned char*)"\n");
pc_closesrc(fsrc);
} /* for */
pc_closesrc(ftmp);