Skip to content
Snippets Groups Projects
Commit b497ee85 authored by rswindell's avatar rswindell
Browse files

Fixed reported gcc compile error:

unbaja.c:1830: warning: pointer targets in passing argument 1
of ?decompile_ars? differ in signedness
parent 1ba01b88
No related branches found
No related tags found
No related merge requests found
......@@ -1827,7 +1827,7 @@ void decompile(FILE *bin, FILE *srcfile)
p=(char *)malloc(uch);
fread(p,uch,1,bin);
WRITE_NAME("COMPARE_ARS");
sprintf(strchr(src,0),"%s\n",decompile_ars(p,uch));
sprintf(strchr(src,0),"%s\n",decompile_ars((uchar*)p,uch));
free(p);
break;
case CS_TOGGLE_USER_MISC:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment