From 45079da973679bc3ac58716a83d15e0f742f1070 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 23 Sep 2005 21:49:31 +0000 Subject: [PATCH] (verify_type__): Use 2, not 1, for bitfield size, to avoid a warning with Irix 6.5 cc. --- lib/verify.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/verify.h b/lib/verify.h index c8066e91d9..406715ffef 100644 --- a/lib/verify.h +++ b/lib/verify.h @@ -30,7 +30,7 @@ private to this header file. */ # define verify_type__(R) \ - struct { int verify_error_if_negative_size__ : (R) ? 1 : -1; } + struct { int verify_error_if_negative_size__ : (R) ? 2 : -1; } /* Verify requirement R at compile-time, as a declaration. */ -- 2.47.3