]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
curl_ctype: add space around <= operator in ISSPACE macro
authorEmanuele Torre <torreemanuele6@gmail.com>
Tue, 6 Sep 2022 10:32:49 +0000 (12:32 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 6 Sep 2022 12:31:19 +0000 (14:31 +0200)
Follow-up to f65f750

Closes #9441

lib/curl_ctype.h

index 20b1e21ebb60a378b7032c2146faf67ba02ba500..dc6b8cab8644b7ce0f27d7529f31844cbdf942a7 100644 (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 */