Skip to content

Commit fcbc95b

Browse files
committed
Make validate_exec take a const char *, for gcc 3.4, which is more
strict.
1 parent daac2d2 commit fcbc95b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/port/exec.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $PostgreSQL: pgsql/src/port/exec.c,v 1.13 2004/05/21 16:06:23 tgl Exp $
10+
* $PostgreSQL: pgsql/src/port/exec.c,v 1.14 2004/05/24 20:23:50 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -72,7 +72,7 @@ static void win32_make_absolute(char *path);
7272
* -2 if the file is otherwise valid but cannot be read.
7373
*/
7474
static int
75-
validate_exec(char *path)
75+
validate_exec(const char *path)
7676
{
7777
struct stat buf;
7878

0 commit comments

Comments
 (0)