Now shows the number of language tables in the summary.

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1217 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-09-29 20:57:22 +00:00
parent e9f2ee188a
commit f0909b5ef7

View file

@ -1441,14 +1441,14 @@ int CEXEBuild::write_output(void)
int ne=build_entries.getlen()/sizeof(entry);
INFO_MSG("Install: %d instruction%s (%d bytes), ",ne,ne==1?"":"s",ne*sizeof(entry));
INFO_MSG("%d byte string table, ",build_strlist.getlen());
INFO_MSG("%d byte language tables.\n",build_langtables.getlen());
INFO_MSG("%d byte language tables (%d tables).\n",build_langtables.getlen(),string_tables.size());
if (ubuild_entries.getlen())
{
int tmp=ubuild_entries.getlen()/sizeof(entry);
INFO_MSG("Uninstall: ");
INFO_MSG("%d instruction%s (%d bytes), ",tmp,tmp==1?"":"s",tmp*sizeof(entry));
INFO_MSG("%d byte string table, ",ubuild_strlist.getlen());
INFO_MSG("%d byte language tables.\n",ubuild_langtables.getlen());
INFO_MSG("%d byte language tables (%d tables).\n",ubuild_langtables.getlen(),string_tables.size());
}