From ab00a6cc5efb9fb8e3c6a16304a6ad7c2f410f96 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Tue, 19 Feb 2008 12:06:35 +0000 Subject: [PATCH] Fix function prototype to silence compiler warnings. --- src/timezone/strftime.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/timezone/strftime.c b/src/timezone/strftime.c index 298017d9a1..1a18136ea2 100644 --- a/src/timezone/strftime.c +++ b/src/timezone/strftime.c @@ -92,7 +92,8 @@ static char *_add(const char *, char *, const char *); static char *_conv(int, const char *, char *, const char *); static char *_fmt(const char *, const struct pg_tm *, char *, const char *, int *); -static char * _yconv(int, int, int, int, char *, const char *); +static char * _yconv(const int, const int, const int, const int, + char *, const char * const); #define IN_NONE 0 #define IN_SOME 1 -- 2.39.5