1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-05 23:38:41 +03:00

Correct type for isalnum

This commit is contained in:
Teodor Sigaev
2004-01-19 18:39:45 +00:00
parent 1469af8629
commit 239760209b

View File

@@ -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 */