Skip to content

Commit aa0d3ec

Browse files
committed
From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>
The file 'backend/utils/adt/arrayfuncs.c' won't compile with the February 14th snapshot, because of an inconsistency between the declaration and implementation of ReadArrayStr(). As far as I can tell, the predeclaration is wrong. I assume this is what was meant:
1 parent a377ad5 commit aa0d3ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backend/utils/adt/arrayfuncs.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.25 1998/02/13 19:45:53 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.26 1998/02/14 18:00:37 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -44,9 +44,9 @@
4444
/*-=-=--=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-*/
4545
static int _ArrayCount(char *str, int dim[], int typdelim);
4646
static char *_ReadArrayStr(char *arrayStr, int nitems, int ndim, int dim[],
47-
FmgrInfo *inputproc, Oid typelem, char typdelim,
48-
int typlen, bool typbyval, char typalign,
49-
int *nbytes, int16 typmod);
47+
FmgrInfo *inputproc, Oid typelem, int16 typmod,
48+
char typdelim, int typlen, bool typbyval,
49+
char typalign, int *nbytes);
5050

5151
#ifdef LOARRAY
5252
static char *

0 commit comments

Comments
 (0)