summaryrefslogtreecommitdiff
path: root/shared/zstring.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:07:43 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:07:43 +0200
commit4226e548662339ea1ca37b45385a7cf9b237ff1e (patch)
tree9a3fa54b85d97f05164e41bdb96b82f748a37342 /shared/zstring.cpp
parent3.7 (diff)
downloadFreeFileSync-4226e548662339ea1ca37b45385a7cf9b237ff1e.tar.gz
FreeFileSync-4226e548662339ea1ca37b45385a7cf9b237ff1e.tar.bz2
FreeFileSync-4226e548662339ea1ca37b45385a7cf9b237ff1e.zip
3.8
Diffstat (limited to 'shared/zstring.cpp')
-rw-r--r--shared/zstring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/zstring.cpp b/shared/zstring.cpp
index 4652a6fe..6bd0e824 100644
--- a/shared/zstring.cpp
+++ b/shared/zstring.cpp
@@ -37,7 +37,7 @@ AllocationCount::~AllocationCount()
MessageBox(NULL, wxString(wxT("Memory leak detected!")) + wxT("\n\n")
+ wxT("Candidates:\n") + leakingStrings,
- wxString::Format(wxT("%i"), activeStrings.size()), 0);
+ wxString::Format(wxT("%u"), activeStrings.size()), 0);
}
#else
throw std::logic_error("Memory leak!");
bgstack15