mirror of
https://github.com/postgres/postgres.git
synced 2026-06-08 16:26:30 -04:00
Correct type for isalnum
This commit is contained in:
parent
1469af8629
commit
239760209b
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ typedef struct
|
|||
#ifndef abs
|
||||
#define abs(a) ((a) < (0) ? -(a) : (a))
|
||||
#endif
|
||||
#define ISALNUM(x) ( isalnum((unsigned int)(x)) || (x) == '_' )
|
||||
#define ISALNUM(x) ( isalnum((unsigned char)(x)) || (x) == '_' )
|
||||
|
||||
/* full text query */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue