signed/unsigned mismatch

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3285 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-12-16 16:32:02 +00:00
parent 477f281328
commit 0255c1414d

View file

@ -2500,7 +2500,7 @@ int CEXEBuild::doCommand(int which_token, LineParser &line)
{
WIN32_FIND_DATA fd;
char *f = line.gettoken_str(1);
int malloced = sizeof(fd.cFileName) + strlen(f) + 1;
unsigned int malloced = sizeof(fd.cFileName) + strlen(f) + 1;
char *incfile = (char *) malloc(malloced);
int included = 0;