From 8e827467047e6758fa9038c99699bb1216a20fdd Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 11 Sep 2018 12:42:31 -0700 Subject: [PATCH] xstrtol: actually copy the intprops.h line --- lib/xstrtol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xstrtol.c b/lib/xstrtol.c index efc22afc34..e5bfd7e0f3 100644 --- a/lib/xstrtol.c +++ b/lib/xstrtol.c @@ -42,7 +42,7 @@ #include "assure.h" -#define TYPE_SIGNED(t) ((t) -1 < 0) +#define TYPE_SIGNED(t) (! ((t) 0 < (t) -1)) static strtol_error bkm_scale (__strtol_t *x, int scale_factor) -- 2.39.5