summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Vít <jakub.vit@gmail.com>2016-09-04 19:44:39 +0100
committerSteven G. Johnson <stevenj@mit.edu>2016-09-04 14:44:38 -0400
commitcaef918abd0a9425b3942df3859c7bea7b8986e0 (patch)
treee23dd5ff5a5435bb35b44102554189e871e8b684
parentce116392201f9f96b3e8519eb5c82c03144d0109 (diff)
downloadlibutf8proc-caef918abd0a9425b3942df3859c7bea7b8986e0.tar.gz
libutf8proc-caef918abd0a9425b3942df3859c7bea7b8986e0.tar.bz2
Change definition of UINT16_MAX macro (#84)
Change UINT16_MAX from `~(utf8proc_uint16_t)0` to fixed value `65535U` to prevent weird behaviour in complex expressions.
-rw-r--r--utf8proc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8proc.h b/utf8proc.h
index 82c0902..186641d 100644
--- a/utf8proc.h
+++ b/utf8proc.h
@@ -134,7 +134,7 @@ extern "C" {
#endif
#ifndef UINT16_MAX
-# define UINT16_MAX ~(utf8proc_uint16_t)0
+# define UINT16_MAX 65535U
#endif
/**