tree-wide: add whitespace between type and variable name

This commit is contained in:
Yu Watanabe
2018-12-04 09:29:54 +01:00
parent b403758ce0
commit f2a3de0116
24 changed files with 27 additions and 27 deletions

View File

@@ -430,7 +430,7 @@ const char *special_glyph(SpecialGlyph code) {
return draw_table[code >= _SPECIAL_GLYPH_FIRST_SMILEY ? emoji_enabled() : is_locale_utf8()][code];
}
void locale_variables_free(char*l[_VARIABLE_LC_MAX]) {
void locale_variables_free(char *l[_VARIABLE_LC_MAX]) {
LocaleVariable i;
if (!l)

View File

@@ -61,5 +61,5 @@ static inline int unit_name_mangle(const char *name, UnitNameMangle flags, char
}
int slice_build_parent_slice(const char *slice, char **ret);
int slice_build_subslice(const char *slice, const char*name, char **subslice);
int slice_build_subslice(const char *slice, const char *name, char **subslice);
bool slice_name_is_valid(const char *name);