From 64b8a5b1ef7ef06c35276e5a12b9ac20aad4475e Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Fri, 10 Jul 2020 14:52:29 +0000 Subject: [PATCH] changed ambiguous code in lib/fmt.c --- lib/fmt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/fmt.c b/lib/fmt.c index d67c37b..7cdaa22 100644 --- a/lib/fmt.c +++ b/lib/fmt.c @@ -1095,7 +1095,7 @@ static int fmt_outv (hcl_fmtout_t* fmtout, va_list ap) sign = 0; if (lm_flag & LF_J) { - #if defined(__GNUC__) && \ + #if 0 && defined(__GNUC__) && \ (HCL_SIZEOF_UINTMAX_T > HCL_SIZEOF_OOW_T) && \ (HCL_SIZEOF_UINTMAX_T != HCL_SIZEOF_LONG_LONG) && \ (HCL_SIZEOF_UINTMAX_T != HCL_SIZEOF_LONG) @@ -1139,7 +1139,7 @@ static int fmt_outv (hcl_fmtout_t* fmtout, va_list ap) handle_sign: if (lm_flag & LF_J) { - #if defined(__GNUC__) && \ + #if 0 && defined(__GNUC__) && \ (HCL_SIZEOF_INTMAX_T > HCL_SIZEOF_OOI_T) && \ (HCL_SIZEOF_UINTMAX_T != HCL_SIZEOF_LONG_LONG) && \ (HCL_SIZEOF_UINTMAX_T != HCL_SIZEOF_LONG)