summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmanuele Torre <torreemanuele6@gmail.com>2022-09-06 12:32:49 +0200
committerDaniel Stenberg <daniel@haxx.se>2022-09-06 14:31:19 +0200
commitf1b76e53ae8878aecc0ee4d41915b4f386ddd595 (patch)
treea36404b7be7fb9cfe698e24ae05b6d07686c056d
parentfa26f15b1995776cdcbf12f8a3f9d50bb8230c68 (diff)
downloadcurl-f1b76e53ae8878aecc0ee4d41915b4f386ddd595.tar.gz
curl_ctype: add space around <= operator in ISSPACE macro
Follow-up to f65f750 Closes #9441
-rw-r--r--lib/curl_ctype.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_ctype.h b/lib/curl_ctype.h
index 20b1e21eb..dc6b8cab8 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 */