diff --git a/Source/makenssi.cpp b/Source/makenssi.cpp index b1681e55..2521ad9b 100644 --- a/Source/makenssi.cpp +++ b/Source/makenssi.cpp @@ -218,9 +218,11 @@ int main(int argc, char **argv) { if (build.display_info) { - 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 [un]install header is %d bytes,\n",sizeof(header)); + fprintf(g_output,"Size of zlib EXE header is %d bytes.\n",zlib_exeheader_size); + fprintf(g_output,"Size of bzip2 EXE header is %d bytes.\n",bzip2_exeheader_size); + fprintf(g_output,"Size of lzma EXE header is %d bytes.\n",lzma_exeheader_size); + fprintf(g_output,"Size of first header is %d bytes.\n",sizeof(firstheader)); + fprintf(g_output,"Size of main header is %d bytes.\n",sizeof(header)); 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));