summaryrefslogtreecommitdiff
path: root/isprint.h
diff options
context:
space:
mode:
Diffstat (limited to 'isprint.h')
-rw-r--r--isprint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/isprint.h b/isprint.h
index 7cf02ebb1b..85f16f1697 100644
--- a/isprint.h
+++ b/isprint.h
@@ -35,6 +35,6 @@
* all characters that aren't printable ASCII.
*/
#undef isprint
-#define isprint(c) (c >= 0x20 && c < 0x7f)
+#define isprint(c) (((c) >= 0x20) && ((c) < 0x7f))
#endif