All warnings removed.

This commit is contained in:
Joel Sherrill
1998-08-21 13:04:55 +00:00
parent c3a1c0585c
commit 33679ec46e
28 changed files with 100 additions and 24 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ struct ipstat ipstat;
#define IPREASS_NHASH (1 << IPREASS_NHASH_LOG2)
#define IPREASS_HMASK (IPREASS_NHASH - 1)
#define IPREASS_HASH(x,y) \
((((x) & 0xF | ((((x) >> 8) & 0xF) << 4)) ^ (y)) & IPREASS_HMASK)
(((((x) & 0xF) | ((((x) >> 8) & 0xF) << 4)) ^ (y)) & IPREASS_HMASK)
static struct ipq ipq[IPREASS_NHASH];
static int nipq = 0; /* total # of reass queues */