diff options
author | Giedrius Statkevičius <[email protected]> | 2015-08-09 00:25:43 +0300 |
---|---|---|
committer | Giedrius Statkevičius <[email protected]> | 2015-08-09 00:25:43 +0300 |
commit | 1e438468aa59f88145aa9e88ac0546bfb815dc47 (patch) | |
tree | bd711d8fdf7d6be6c6cc59c29498b0ccd248ee66 | |
parent | ff9a8f4e67e457cf53fc5a1e6bf9c55b1387aba4 (diff) | |
download | mate-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.c | 2 |
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); |