From 0f9cdb2a59e088cf3fb59aa4dab3621c091a8dfb Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 21 Jun 2007 06:20:43 +0000 Subject: [PATCH] inttypes.h: Fix spelling of SHRT_MAX --- inttypes/inttypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.11.4.GIT