curl_ctype: add space around <= operator in ISSPACE macro

Follow-up to f65f750

Closes #9441
This commit is contained in:
Emanuele Torre 2022-09-06 12:32:49 +02:00 committed by Daniel Stenberg
parent fa26f15b19
commit f1b76e53ae
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -42,6 +42,6 @@
#define ISLOWER(x) (((x) >= 'a') && ((x) <= 'z'))
#define ISDIGIT(x) (((x) >= '0') && ((x) <= '9'))
#define ISBLANK(x) (((x) == ' ') || ((x) == '\t'))
#define ISSPACE(x) (ISBLANK(x) || (((x) >= 0xa) && ((x) <=0x0d)))
#define ISSPACE(x) (ISBLANK(x) || (((x) >= 0xa) && ((x) <= 0x0d)))
#endif /* HEADER_CURL_CTYPE_H */