Skip to content

Commit 7fe8722

Browse files
committed
Add () around define -1.
1 parent 44d1abe commit 7fe8722

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/utils/adt/like.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Portions Copyright (c) 1994, Regents of the University of California
1212
*
1313
* IDENTIFICATION
14-
* $Header: /cvsroot/pgsql/src/backend/utils/adt/like.c,v 1.34 2000/04/12 17:15:50 momjian Exp $
14+
* $Header: /cvsroot/pgsql/src/backend/utils/adt/like.c,v 1.35 2000/06/14 18:59:42 momjian Exp $
1515
*
1616
*-------------------------------------------------------------------------
1717
*/
@@ -133,7 +133,7 @@ textnlike(struct varlena * s, struct varlena * p)
133133

134134
#define LIKE_TRUE 1
135135
#define LIKE_FALSE 0
136-
#define LIKE_ABORT -1
136+
#define LIKE_ABORT (-1)
137137

138138
/*--------------------
139139
* Match text and p, return LIKE_TRUE, LIKE_FALSE, or LIKE_ABORT.

0 commit comments

Comments
 (0)