Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 00b821a

Browse files
committed
Fix gratuitous weirdness in function prototype, per Kris Jurka.
1 parent 2f132eb commit 00b821a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/port/path.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/port/path.c,v 1.35 2004/09/02 16:42:00 tgl Exp $
11+
* $PostgreSQL: pgsql/src/port/path.c,v 1.36 2004/09/24 05:16:35 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -32,7 +32,7 @@
3232
#define IS_PATH_SEP(ch) ((ch) == ';')
3333
#endif
3434

35-
const static char *relative_path(const char *bin_path, const char *other_path);
35+
static const char *relative_path(const char *bin_path, const char *other_path);
3636
static void make_relative(const char *my_exec_path, const char *p, char *ret_path);
3737
static void trim_directory(char *path);
3838
static void trim_trailing_separator(char *path);

0 commit comments

Comments
 (0)