note: expected ‘char’ but argument is of type ‘ch怎么回事呢
char *lgm="i love china!";//我想以字符串作为传输传递给testInit函数,提示我错误
imghandle = testInitTHFaceID(lgm,frMode);
----------------
函数如下
int testInit(char *Path,int mode){
printf("%s\n",Path);
return 1;
}
-------------
note: expected ‘char’ but argument is of type ‘ch
我应该怎么更改呢。