Correct type for isalnum
This commit is contained in:
parent
1469af8629
commit
239760209b
@ -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…
x
Reference in New Issue
Block a user