Fix indentation.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2014-09-02 15:57:56 +04:00
parent 903c5c926d
commit d6004701cc
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ int g_strcmp0 (const char *str1, const char *str2);
#endif /* ! GLIB_CHECK_VERSION (2, 16, 0) */ #endif /* ! GLIB_CHECK_VERSION (2, 16, 0) */
#if ! GLIB_CHECK_VERSION (2, 22, 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) */ #endif /* ! GLIB_CHECK_VERSION (2, 22, 0) */
#if ! GLIB_CHECK_VERSION (2, 28, 0) #if ! GLIB_CHECK_VERSION (2, 28, 0)

View File

@ -786,7 +786,7 @@ completion_matches (const char *text, CompletionFunction entry_function, input_c
match_list[0] = g_strndup (match_list[1], low); match_list[0] = g_strndup (match_list[1], low);
} }
} }
else /* There were no matches. */ else /* There were no matches. */
MC_PTR_FREE (match_list); MC_PTR_FREE (match_list);
return match_list; return match_list;