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

@@ -1095,7 +1095,7 @@ finish:
return 0;
}
static int dns_name_build_suffix_table(const char *name, const char*table[]) {
static int dns_name_build_suffix_table(const char *name, const char *table[]) {
const char *p;
unsigned n = 0;
int r;

View File

@@ -1031,7 +1031,7 @@ static int output_cat(
static int (*output_funcs[_OUTPUT_MODE_MAX])(
FILE *f,
sd_journal*j,
sd_journal *j,
OutputMode mode,
unsigned n_columns,
OutputFlags flags,

View File

@@ -19,7 +19,7 @@ typedef enum PTYForwardFlags {
PTY_FORWARD_IGNORE_INITIAL_VHANGUP = 4,
} PTYForwardFlags;
typedef int (*PTYForwardHandler)(PTYForward *f, int rcode, void*userdata);
typedef int (*PTYForwardHandler)(PTYForward *f, int rcode, void *userdata);
int pty_forward_new(sd_event *event, int master, PTYForwardFlags flags, PTYForward **f);
PTYForward *pty_forward_free(PTYForward *f);