diff options
author | Ben Chan <benchan@chromium.org> | 2017-07-17 10:09:02 -0700 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2017-07-17 13:46:14 -0500 |
commit | 5263ec650f4479863b8472f7844eef601eea6368 (patch) | |
tree | c3ac7c98eaffaa27855e84f1687c08195a3105d5 /src/mm-log.c | |
parent | 024825042e862e2a0cc8cd256b56ac23b9ce005b (diff) |
log: minor coding style fixes
Diffstat (limited to 'src/mm-log.c')
-rw-r--r-- | src/mm-log.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mm-log.c b/src/mm-log.c index 5691b26f..83c58235 100644 --- a/src/mm-log.c +++ b/src/mm-log.c @@ -89,7 +89,7 @@ mm_to_syslog_priority (MMLogLevel level) case MM_LOG_LEVEL_ERR: return LOG_ERR; } - g_assert_not_reached(); + g_assert_not_reached (); return 0; } @@ -125,7 +125,7 @@ log_level_description (MMLogLevel level) case MM_LOG_LEVEL_ERR: return "<error>"; } - g_assert_not_reached(); + g_assert_not_reached (); return NULL; } @@ -249,7 +249,7 @@ log_handler (const gchar *log_domain, const gchar *message, gpointer ignored) { - log_backend (NULL, NULL, glib_to_syslog_priority (level), message, strlen(message)); + log_backend (NULL, NULL, glib_to_syslog_priority (level), message, strlen (message)); } gboolean |