From b447372e7c120e2336fe0ac910792b04e1688af2 Mon Sep 17 00:00:00 2001 From: "Leandro A. F. Pereira" Date: Thu, 4 Jan 2007 14:41:24 +0000 Subject: Fix segfaults, cleanups. --- hardinfo2/util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hardinfo2/util.c') diff --git a/hardinfo2/util.c b/hardinfo2/util.c index c0b7d35e..ecd2b6fa 100644 --- a/hardinfo2/util.c +++ b/hardinfo2/util.c @@ -816,9 +816,9 @@ static gboolean __idle_free_do(gpointer ptr) gpointer idle_free(gpointer ptr) { - DEBUG("Will free mem @ %p in 5000ms", ptr); + DEBUG("Will free mem @ %p in 10000ms", ptr); - g_timeout_add(5000, __idle_free_do, ptr); + g_timeout_add(10000, __idle_free_do, ptr); return ptr; } @@ -834,7 +834,7 @@ void module_entry_scan_all_except(ModuleEntry *entries, gint except_entry) if (i == except_entry) continue; - shell_status_update(idle_free(g_strdup_printf("Scanning: %s...", entry.name))); + shell_status_update(idle_free(g_strdup_printf("Scanning: %s...", entry.name))); if ((scan_callback = entry.scan_callback)) { scan_callback(FALSE); -- cgit v1.2.3