diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-09-23 21:49:31 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-09-23 21:49:31 +0000 |
commit | 45079da973679bc3ac58716a83d15e0f742f1070 (patch) | |
tree | 60e91f9c42e15c74a914c1771abaa31ca171a122 | |
parent | 28475f652b2d97afb4233848632fe418bf1c87cd (diff) | |
download | coreutils-45079da973679bc3ac58716a83d15e0f742f1070.tar.xz |
(verify_type__): Use 2, not 1, for bitfield size, to avoid
a warning with Irix 6.5 cc.
-rw-r--r-- | lib/verify.h | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |