summaryrefslogtreecommitdiff
path: root/rpmio/digest.c
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2001-06-04 13:55:58 +0000
committerjbj <devnull@localhost>2001-06-04 13:55:58 +0000
commit750d54d8a33e67d8f89ed95a785c0f025c833aa8 (patch)
treeb884b1b98864221da1ccc14c5551579cb885be73 /rpmio/digest.c
parent9e1929c9bb268faad7c8f140161504dbaf7f00f0 (diff)
downloadrpm-750d54d8a33e67d8f89ed95a785c0f025c833aa8.tar.gz
rpm-750d54d8a33e67d8f89ed95a785c0f025c833aa8.tar.bz2
rpm-750d54d8a33e67d8f89ed95a785c0f025c833aa8.zip
lclint fiddles.
CVS patchset: 4833 CVS date: 2001/06/04 13:55:58
Diffstat (limited to 'rpmio/digest.c')
-rw-r--r--rpmio/digest.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/rpmio/digest.c b/rpmio/digest.c
index c2e9628eb..c463d1509 100644
--- a/rpmio/digest.c
+++ b/rpmio/digest.c
@@ -361,7 +361,10 @@ MD5Transform(DIGEST_CTX ctx)
static int _ie = 0x44332211;
/*@-redef@*/
-static union _mendian { int i; char b[4]; } *_endian = (union _mendian *)&_ie;
+static union _mendian {
+/*@unused@*/ int i;
+ char b[4];
+} *_endian = (union _mendian *)&_ie;
/*@=redef@*/
#define IS_BIG_ENDIAN() (_endian->b[0] == '\x44')
#define IS_LITTLE_ENDIAN() (_endian->b[0] == '\x11')