summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiedrius Statkevičius <[email protected]>2015-08-09 00:25:43 +0300
committerGiedrius Statkevičius <[email protected]>2015-08-09 00:25:43 +0300
commit1e438468aa59f88145aa9e88ac0546bfb815dc47 (patch)
treebd711d8fdf7d6be6c6cc59c29498b0ccd248ee66
parentff9a8f4e67e457cf53fc5a1e6bf9c55b1387aba4 (diff)
downloadmate-notification-daemon-1e438468aa59f88145aa9e88ac0546bfb815dc47.tar.bz2
mate-notification-daemon-1e438468aa59f88145aa9e88ac0546bfb815dc47.tar.xz
daemon: remove redundant G_LOG_LEVEL_ERROR in g_log_set_always_fatal()
G_LOG_LEVEL_ERROR is already always fatal so no need to pass it to g_log_set_always_fatal()
-rw-r--r--src/daemon/daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/daemon.c b/src/daemon/daemon.c
index 804af85..61632b0 100644
--- a/src/daemon/daemon.c
+++ b/src/daemon/daemon.c
@@ -1755,7 +1755,7 @@ int main(int argc, char** argv)
gboolean res;
guint request_name_result;
- g_log_set_always_fatal(G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL);
+ g_log_set_always_fatal(G_LOG_LEVEL_CRITICAL);
gtk_init(&argc, &argv);