From acbbe9f88ebb2f86b1686687177c33e3a11e0127 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 20 Mar 2006 20:21:25 +0000 Subject: [PATCH] Fix the build --- glib/gmem.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glib/gmem.c b/glib/gmem.c index e47a011..2e3ca93 100644 --- a/glib/gmem.c +++ b/glib/gmem.c @@ -318,7 +318,8 @@ profiler_log (ProfilerJob job, g_mutex_lock (gmem_profile_mutex); if (!profile_data) { - profile_data = standard_calloc ((MEM_PROFILE_TABLE_SIZE + 1) * 8 * sizeof (profile_data[0])); + profile_data = standard_calloc ((MEM_PROFILE_TABLE_SIZE + 1) * 8, + sizeof (profile_data[0])); if (!profile_data) /* memory system kiddin' me, eh? */ { g_mutex_unlock (gmem_profile_mutex); -- 2.7.4