Wasn't a typo after all

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1019 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-09-18 13:42:42 +00:00
parent d40931b39b
commit b2b2066c0c

View file

@ -3701,7 +3701,7 @@ int CEXEBuild::do_add_file(const char *lgss, int attrib, int recurse, int linecn
if (len && !(hFileMap = CreateFileMapping(hFile, NULL, PAGE_READONLY, 0, 0, NULL)))
{
CloseHandle(hFile);
ERROR_MSG("File: failed creating map of \"%s\"\n",newfn);
ERROR_MSG("File: failed creating mmap of \"%s\"\n",newfn);
return PS_ERROR;
}
char *filedata=NULL;
@ -3712,7 +3712,7 @@ int CEXEBuild::do_add_file(const char *lgss, int attrib, int recurse, int linecn
{
if (hFileMap) CloseHandle(hFileMap);
CloseHandle(hFile);
ERROR_MSG("File: failed mapping file \"%s\"\n",newfn);
ERROR_MSG("File: failed mmapping file \"%s\"\n",newfn);
return PS_ERROR;
}
}