diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2012-09-03 22:58:38 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2012-09-03 22:58:38 -0400 |
commit | b5d437c011e9d739b79aa37ca19baca56b334ab7 (patch) | |
tree | ab8d85e63f0a3ac8831a54e41611d9e4eaa57729 | |
parent | 765b5c41ba70098086988b4c7ba84162cd88e1de (diff) |
Indent fix_path_separator() header properly.
-rw-r--r-- | contrib/pg_upgrade/check.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/pg_upgrade/check.c b/contrib/pg_upgrade/check.c index c89b2dfd0fd..f2dcc0483da 100644 --- a/contrib/pg_upgrade/check.c +++ b/contrib/pg_upgrade/check.c @@ -30,7 +30,8 @@ static void get_bin_version(ClusterInfo *cluster); * such as is suitable for arguments to builtin commands * like RMDIR and DEL. */ -static char *fix_path_separator(char *path) +static char * +fix_path_separator(char *path) { #ifdef WIN32 |