Mercurial > hg > octave-shane > gnulib-hg
changeset 6289:b8c8dc112e16
(verify_type__): Use 2, not 1, for bitfield size, to avoid
a warning with Irix 6.5 cc. Problem reported by Bruno Haible.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Fri, 23 Sep 2005 21:51:06 +0000 |
parents | a6b3996fab54 |
children | 23a3585b64aa |
files | lib/verify.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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. */