From: Dale Weiler Date: Tue, 16 Apr 2013 09:13:22 +0000 (+0000) Subject: Fix memdump printing X-Git-Tag: before-library~56 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=1c51fb80eb267e7e5ea9f1518e513320331a5693 Fix memdump printing --- diff --git a/util.c b/util.c index 92f8e5e..59be9bf 100644 --- a/util.c +++ b/util.c @@ -192,8 +192,8 @@ void util_meminfo() { Total peak memory: %f (MB)\n\ Total leaked memory: %f (MB) in %llu allocations\n", mem_at, - (float)(mem_dt) / 1048576.0f, - mem_ab, + mem_dt, + (float)(mem_ab) / 1048576.0f, (float)(mem_db) / 1048576.0f, (float)(mem_pk) / 1048576.0f, (float)(mem_ab - mem_db) / 1048576.0f,