From 0743ae6bd85a1b1d59fe52d8c3dcf89ed3aa840a Mon Sep 17 00:00:00 2001 From: justin1014 Date: Wed, 2 Oct 2002 04:32:10 +0000 Subject: [PATCH] made some output info slightly prettier git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1265 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/build.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Source/build.cpp b/Source/build.cpp index 84f2b43d..6fb82c16 100644 --- a/Source/build.cpp +++ b/Source/build.cpp @@ -1475,11 +1475,11 @@ int CEXEBuild::write_output(void) INFO_MSG("EXE header size: %10d / %d bytes\n",exeheader_size_new,exeheader_size); if (build_compress_whole) { - INFO_MSG("Install code+strings: (%d bytes)\n", + INFO_MSG("Install code: (%d bytes)\n", sizeof(fh)+fh.length_of_header+sizeof(int)); } else { - INFO_MSG("Install code+strings: %10d / %d bytes\n", + INFO_MSG("Install code: %10d / %d bytes\n", sizeof(fh)+installinfo_compressed, sizeof(fh)+fh.length_of_header+sizeof(int)); } @@ -1505,9 +1505,9 @@ int CEXEBuild::write_output(void) if (uninstall_size>=0) { if (build_compress_whole) - INFO_MSG("Uninstall code+data+strings: (%d bytes)\n",uninstall_size_full); + INFO_MSG("Uninstall code+data: (%d bytes)\n",uninstall_size_full); else - INFO_MSG("Uninstall code+data+strings: %6d / %d bytes\n",uninstall_size,uninstall_size_full); + INFO_MSG("Uninstall code+data: %6d / %d bytes\n",uninstall_size,uninstall_size_full); total_usize+=uninstall_size_full; } @@ -1517,7 +1517,6 @@ int CEXEBuild::write_output(void) int dbl=build_datablock.getlen(); if (build_compress_whole) { INFO_MSG("Compressed data: "); -// INFO_MSG("[compress]"); } while (dbl > 0) {