Commit 00b821a1 authored by Tom Lane's avatar Tom Lane

Fix gratuitous weirdness in function prototype, per Kris Jurka.

parent 2f132ebf
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * 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 @@ ...@@ -32,7 +32,7 @@
#define IS_PATH_SEP(ch) ((ch) == ';') #define IS_PATH_SEP(ch) ((ch) == ';')
#endif #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 make_relative(const char *my_exec_path, const char *p, char *ret_path);
static void trim_directory(char *path); static void trim_directory(char *path);
static void trim_trailing_separator(char *path); static void trim_trailing_separator(char *path);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment