diff --git a/lib/glibcompat.h b/lib/glibcompat.h index c66f7c451..ba25f3cdd 100644 --- a/lib/glibcompat.h +++ b/lib/glibcompat.h @@ -20,7 +20,7 @@ int g_strcmp0 (const char *str1, const char *str2); #endif /* ! GLIB_CHECK_VERSION (2, 16, 0) */ #if ! GLIB_CHECK_VERSION (2, 22, 0) -GError * g_error_new_valist (GQuark domain, gint code, const gchar * format, va_list args); +GError *g_error_new_valist (GQuark domain, gint code, const gchar * format, va_list args); #endif /* ! GLIB_CHECK_VERSION (2, 22, 0) */ #if ! GLIB_CHECK_VERSION (2, 28, 0) diff --git a/lib/widget/input_complete.c b/lib/widget/input_complete.c index cb35e1942..bb9fcfaf3 100644 --- a/lib/widget/input_complete.c +++ b/lib/widget/input_complete.c @@ -786,7 +786,7 @@ completion_matches (const char *text, CompletionFunction entry_function, input_c match_list[0] = g_strndup (match_list[1], low); } } - else /* There were no matches. */ + else /* There were no matches. */ MC_PTR_FREE (match_list); return match_list;