diff options
author | eivind <eivind@FreeBSD.org> | 1999-01-12 00:36:36 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1999-01-12 00:36:36 +0000 |
commit | 4e34ff4e34384bd86c5183cd03598c41e5665b57 (patch) | |
tree | 6b701144a1b9242d574f7694f6d0918a0b9f47c7 /sys/dev/wl/if_wl.c | |
parent | 156a777d2e41c710c3fcc2329df92503093f70a1 (diff) | |
download | FreeBSD-src-4e34ff4e34384bd86c5183cd03598c41e5665b57.zip FreeBSD-src-4e34ff4e34384bd86c5183cd03598c41e5665b57.tar.gz |
Silence warnings.
Diffstat (limited to 'sys/dev/wl/if_wl.c')
-rw-r--r-- | sys/dev/wl/if_wl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/wl/if_wl.c b/sys/dev/wl/if_wl.c index 081f4b4..42fc0f9 100644 --- a/sys/dev/wl/if_wl.c +++ b/sys/dev/wl/if_wl.c @@ -1,4 +1,4 @@ -/* $Id: if_wl.c,v 1.18 1998/12/07 21:58:21 archie Exp $ */ +/* $Id: if_wl.c,v 1.19 1998/12/09 03:30:51 eivind Exp $ */ /* * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -2549,7 +2549,7 @@ static void wl_cache_store (int unit, int base, struct ether_header *eh, struct mbuf *m) { - struct ip *ip; + struct ip *ip = NULL; /* Avoid GCC warning */ int i; int signal, silence; int w_insertcache; /* computed index for cache entry storage */ |