summaryrefslogtreecommitdiff
path: root/lib/verify.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-09-23 21:49:31 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-09-23 21:49:31 +0000
commit45079da973679bc3ac58716a83d15e0f742f1070 (patch)
tree60e91f9c42e15c74a914c1771abaa31ca171a122 /lib/verify.h
parent28475f652b2d97afb4233848632fe418bf1c87cd (diff)
downloadcoreutils-45079da973679bc3ac58716a83d15e0f742f1070.tar.xz
(verify_type__): Use 2, not 1, for bitfield size, to avoid
a warning with Irix 6.5 cc.
Diffstat (limited to 'lib/verify.h')
-rw-r--r--lib/verify.h2
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. */