From: Emanuele Torre Date: Tue, 6 Sep 2022 10:32:49 +0000 (+0200) Subject: curl_ctype: add space around <= operator in ISSPACE macro X-Git-Tag: curl-7_86_0~296 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f1b76e53ae8878aecc0ee4d41915b4f386ddd595;p=thirdparty%2Fcurl.git curl_ctype: add space around <= operator in ISSPACE macro Follow-up to f65f750 Closes #9441 --- diff --git a/lib/curl_ctype.h b/lib/curl_ctype.h index 20b1e21ebb..dc6b8cab86 100644 --- a/lib/curl_ctype.h +++ b/lib/curl_ctype.h @@ -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 */