diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-09-24 05:16:35 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-09-24 05:16:35 +0000 |
commit | 00b821a11b62830862594d56958e2d179e3e789f (patch) | |
tree | 91526f5326dc35c053be712f5022000d60afc5be /src/port | |
parent | 2f132ebff75bac59aaed9b07364c2845b4a55dd4 (diff) | |
download | postgresql-00b821a11b62830862594d56958e2d179e3e789f.tar.gz |
Fix gratuitous weirdness in function prototype, per Kris Jurka.
Diffstat (limited to 'src/port')
-rw-r--r-- | src/port/path.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/path.c b/src/port/path.c index 9590c9cedb..e9c5abfbc3 100644 --- a/src/port/path.c +++ b/src/port/path.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/path.c,v 1.35 2004/09/02 16:42:00 tgl Exp $ + * $PostgreSQL: pgsql/src/port/path.c,v 1.36 2004/09/24 05:16:35 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -32,7 +32,7 @@ #define IS_PATH_SEP(ch) ((ch) == ';') #endif -const static char *relative_path(const char *bin_path, const char *other_path); +static const char *relative_path(const char *bin_path, const char *other_path); static void make_relative(const char *my_exec_path, const char *p, char *ret_path); static void trim_directory(char *path); static void trim_trailing_separator(char *path); |