Browse Source

curl_ctype: add space around <= operator in ISSPACE macro

Follow-up to f65f750

Closes #9441
Emanuele Torre 1 year ago
parent
commit
f1b76e53ae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/curl_ctype.h

+ 1 - 1
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 */