mirror of
https://github.com/postgres/postgres.git
synced 2026-05-28 04:35:45 -04:00
Correct type for isalnum
This commit is contained in:
parent
0054f82c62
commit
767adcf5d6
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