diff options
author | Guy Harris <guy@alum.mit.edu> | 2016-08-11 18:13:59 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2016-08-11 18:13:59 -0700 |
commit | bc48a3f8b6b0ee1432ccfa8399f1dd674f166df5 (patch) | |
tree | c998d58aebe961fdf0d8a5c5b0290f159b637a6a /fad-gifc.c | |
parent | ecb7af935ebb89c2640f1c799ac32442eb32a1f0 (diff) |
Squelch a warning.
The variable holds a size; make it a size_t.
Diffstat (limited to 'fad-gifc.c')
-rw-r--r-- | fad-gifc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -138,7 +138,7 @@ pcap_findalldevs_interfaces(pcap_if_t **alldevsp, char *errbuf, pcap_if_t *devlist = NULL; register int fd; register struct ifreq *ifrp, *ifend, *ifnext; - int n; + size_t n; struct ifconf ifc; char *buf = NULL; unsigned buf_size; |