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
This commit is contained in:
justin1014 2002-10-02 04:32:10 +00:00
parent a4366836ab
commit 0743ae6bd8

View file

@ -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)
{