From c59980a4eb7b8d87d9224b714258901a6a3f342a Mon Sep 17 00:00:00 2001 From: kichik Date: Sat, 29 Jan 2005 15:31:56 +0000 Subject: [PATCH] better error message for icon number mismatch git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3887 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/util.cpp b/Source/util.cpp index 0f87edd7..d09af363 100644 --- a/Source/util.cpp +++ b/Source/util.cpp @@ -360,7 +360,7 @@ int generate_unicons_offsets(unsigned char* exeHeader, unsigned char* uninstIcon DWORD dwOffset = *(DWORD*)seeker; seeker += sizeof(DWORD); // offset isn't set which means we found no match for this one - MY_ASSERT(!dwOffset, "number of icons doesn't match"); + MY_ASSERT(!dwOffset, "installer, uninstaller number of icons doesn't match - see the Icon instruction's documentation for more information"); seeker += dwSize; }