summaryrefslogtreecommitdiff
path: root/inttypes
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-06-21 06:20:43 +0000
committerH. Peter Anvin <hpa@zytor.com>2007-06-21 06:20:43 +0000
commit0f9cdb2a59e088cf3fb59aa4dab3621c091a8dfb (patch)
treec8ac7bbcf6326bd170e9e740b52ac1fdcd517129 /inttypes
parent272b6c7295041b422ba6df9bc0909a255318b3a6 (diff)
downloadnasm-0f9cdb2a59e088cf3fb59aa4dab3621c091a8dfb.tar.gz
inttypes.h: Fix spelling of SHRT_MAX
Diffstat (limited to 'inttypes')
-rw-r--r--inttypes/inttypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/inttypes/inttypes.h b/inttypes/inttypes.h
index 8f1305f8..1e452c00 100644
--- a/inttypes/inttypes.h
+++ b/inttypes/inttypes.h
@@ -91,7 +91,7 @@ typedef unsigned int uint16_t;
#define INT16_C(x) x
#define UINT16_C(x) x ## U
-#elif SHORT_MAX == 32767
+#elif SHRT_MAX == 32767
/* short is 16 bits */
typedef signed short int16_t;