diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2012-09-03 22:59:19 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2012-09-03 22:59:19 -0400 |
commit | 2f0c7d585412e0c061cb1cd8c2c0a4b6aada4f74 (patch) | |
tree | e3e90f7a2d657ebd21f57fc57513b713aead5eb3 | |
parent | 015722fb364416b29fb1bb2c10631feb67ad61cd (diff) | |
download | postgresql-2f0c7d585412e0c061cb1cd8c2c0a4b6aada4f74.tar.gz postgresql-2f0c7d585412e0c061cb1cd8c2c0a4b6aada4f74.zip |
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 |