aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBen Chan <benchan@chromium.org>2017-07-17 10:09:02 -0700
committerDan Williams <dcbw@redhat.com>2017-07-17 13:46:14 -0500
commit5263ec650f4479863b8472f7844eef601eea6368 (patch)
treec3ac7c98eaffaa27855e84f1687c08195a3105d5 /src
parent024825042e862e2a0cc8cd256b56ac23b9ce005b (diff)
log: minor coding style fixes
Diffstat (limited to 'src')
-rw-r--r--src/mm-log.c6
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