Fix some MinGW warnings
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6293 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
0d2edb2f1b
commit
4f8bf3c466
6 changed files with 12 additions and 11 deletions
|
@ -591,7 +591,7 @@ size_t ExpandoStrFmtVaList(wchar_t*Stack, size_t cchStack, wchar_t**ppMalloc, co
|
|||
for(;;)
|
||||
{
|
||||
cch = ExpandoStrFmtVaList_vsnwprintf(dest, cchAvail, FmtStr, Args);
|
||||
if (-1 == cch)
|
||||
if ((unsigned)-1 == cch)
|
||||
{
|
||||
cch = 0;
|
||||
if (cansizecalc) break; // vswprintf error, abort!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue