8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 04:03:03 +01:00

Correction

This commit is contained in:
asfernandes 2006-06-15 22:34:49 +00:00
parent 97e82ae7af
commit b944e7bdc6

View File

@ -236,7 +236,7 @@ static inline int fb_isspace(const SSHORT c)
static inline int fb_isdigit(const char c)
{
return isspace((int)(UCHAR)c);
return isdigit((int)(UCHAR)c);
}
#else
#define fb_isspace ::isspace