From: Jean-Philippe Orsini Date: Tue, 11 Sep 2012 10:54:44 +0000 (+0000) Subject: fixed wrong parameters of slog_close call X-Git-Tag: v0.8.0.5~230 X-Git-Url: https://git.wpitchoune.net/gitweb/?p=psensor.git;a=commitdiff_plain;h=96781a3bdf517e3698ba98b131e2d297600ef52f fixed wrong parameters of slog_close call --- diff --git a/src/ui.c b/src/ui.c index 8aab320..88d66f1 100644 --- a/src/ui.c +++ b/src/ui.c @@ -232,7 +232,7 @@ static void on_slog_enabled_cb(GConfClient *client, if (is_slog_enabled()) slog_activate(NULL, sensors, mutex, config_get_slog_interval()); else - slog_close(NULL, sensors); + slog_close(); } void ui_window_create(struct ui_psensor *ui)