From 4543f3f99487e4d589958879826a033fd04ea51c Mon Sep 17 00:00:00 2001 From: kichik Date: Sun, 2 Feb 2014 00:39:28 +0000 Subject: [PATCH] more conversion warning fixes git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6436 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/Library/LibraryLocal/LibraryLocal.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Contrib/Library/LibraryLocal/LibraryLocal.cpp b/Contrib/Library/LibraryLocal/LibraryLocal.cpp index cf4807a8..110411b8 100644 --- a/Contrib/Library/LibraryLocal/LibraryLocal.cpp +++ b/Contrib/Library/LibraryLocal/LibraryLocal.cpp @@ -150,8 +150,8 @@ int _tmain(int argc, TCHAR* argv[]) } else { - fprintf(fHdr, "!define LIBRARY_VERSION_HIGH %lu\n", high); - fprintf(fHdr, "!define LIBRARY_VERSION_LOW %lu\n", low); + fprintf(fHdr, "!define LIBRARY_VERSION_HIGH %u\n", high); + fprintf(fHdr, "!define LIBRARY_VERSION_LOW %u\n", low); } fclose(fHdr);