summaryrefslogtreecommitdiff
path: root/lib/verify.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-09-23 23:05:39 +0000
committerJim Meyering <jim@meyering.net>2005-09-23 23:05:39 +0000
commit8dbb507ee83c41e6ee6d39e009da371d6fa6779d (patch)
treecc1fcd415fba3c33cb68cadce69c7b0cc346befb /lib/verify.h
parent6d8b96f6538326ba1e47a1b286988c1dcfa39d59 (diff)
downloadcoreutils-8dbb507ee83c41e6ee6d39e009da371d6fa6779d.tar.xz
(verify_type__): Use `unsigned int' as the bitfield type
so we can once again use a positive bitfield width of 1 -- now we don't have to explain why we were using a bitfield width of 2.
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 406715ffe..fbabd82c0 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) ? 2 : -1; }
+ struct { unsigned int verify_error_if_negative_size__ : (R) ? 1 : -1; }
/* Verify requirement R at compile-time, as a declaration. */