From 0c8f15a05eecf6f9e186250eb5564eb32d5783f7 Mon Sep 17 00:00:00 2001 From: kichik Date: Thu, 5 Dec 2002 19:44:29 +0000 Subject: [PATCH] Page size in /HDRINFO git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1899 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/makenssi.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/makenssi.cpp b/Source/makenssi.cpp index 79a0ac57..dc97e8f6 100644 --- a/Source/makenssi.cpp +++ b/Source/makenssi.cpp @@ -212,7 +212,9 @@ int main(int argc, char **argv) fprintf(g_output,"Size of EXE header is %d bytes for zlib, %d bytes for bzip2.\n", zlib_exeheader_size,bzip2_exeheader_size); fprintf(g_output,"Size of info header is %d bytes.\n",sizeof(firstheader)); fprintf(g_output,"Size of install header is %d bytes, uninstall header is %d bytes.\n",sizeof(header),sizeof(uninstall_header)); - fprintf(g_output,"Size of each section is %d bytes, each instruction is %d bytes.\n",sizeof(section),sizeof(entry)); + fprintf(g_output,"Size of each section is %d bytes.\n",sizeof(section)); + fprintf(g_output,"Size of each page is %d bytes.\n",sizeof(page)); + fprintf(g_output,"Size of each instruction is %d bytes.\n",sizeof(entry)); char *p=build.definedlist.defines.get(); char *p2=build.definedlist.values.get(); int x=0;