From: Jim Meyering Date: Fri, 23 Sep 2005 23:05:39 +0000 (+0000) Subject: (verify_type__): Use `unsigned int' as the bitfield type X-Git-Tag: v5.90~103 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8dbb507ee83c41e6ee6d39e009da371d6fa6779d;p=thirdparty%2Fcoreutils.git (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. --- diff --git a/lib/verify.h b/lib/verify.h index 406715ffef..fbabd82c03 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. */