From: Paul Eggert Date: Fri, 23 Sep 2005 21:51:06 +0000 (+0000) Subject: (verify_type__): Use 2, not 1, for bitfield size, to avoid X-Git-Tag: cvs-readonly~2897 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=2e2002575e509e35e6a383d13eac4ee03886851e;p=gnulib.git (verify_type__): Use 2, not 1, for bitfield size, to avoid a warning with Irix 6.5 cc. Problem reported by Bruno Haible. --- diff --git a/lib/verify.h b/lib/verify.h index c8066e91d..406715ffe 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. */