gcc doesn't like %lu for DWORD as it's just unsigned int and not long unsigned int
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6315 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
b9a225ff84
commit
ae0b6f6f62
1 changed files with 2 additions and 2 deletions
|
@ -154,8 +154,8 @@ int _tmain(int argc, TCHAR* argv[])
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
fprintf(fHdr, "!define LIBRARY_VERSION_HIGH %lu\n", high);
|
fprintf(fHdr, "!define LIBRARY_VERSION_HIGH %u\n", high);
|
||||||
fprintf(fHdr, "!define LIBRARY_VERSION_LOW %lu\n", low);
|
fprintf(fHdr, "!define LIBRARY_VERSION_LOW %u\n", low);
|
||||||
}
|
}
|
||||||
|
|
||||||
fclose(fHdr);
|
fclose(fHdr);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue