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

Changed pointer from uchar to char to solve gcc warning.

parent 028f4cfe
No related branches found
No related tags found
No related merge requests found
......@@ -200,7 +200,8 @@ void addlist(char *inpath, file_t f, uint dskip, uint sskip)
char listpath[MAX_PATH+1];
char filepath[MAX_PATH+1];
char curline[256],nextline[256];
uchar *p,ext[1024],tmpext[513];
char *p;
uchar ext[1024],tmpext[513];
int i,file;
long l;
BOOL exist;
......
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