diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-17 20:26:25 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-17 20:26:25 +0000 |
commit | c946fc16840d700b867009ea83481581bf6a2693 (patch) | |
tree | a4456b353faf5dcb194df71d0c268a22b74fbc41 /slirp.c | |
parent | 9a8fa602dfa60e83d1c126ad112cf422651f67d0 (diff) | |
download | slirp-c946fc16840d700b867009ea83481581bf6a2693.zip slirp-c946fc16840d700b867009ea83481581bf6a2693.tar.gz slirp-c946fc16840d700b867009ea83481581bf6a2693.tar.bz2 |
Fix some warnings that would be generated by gcc -Wmissing-prototypes
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5022 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'slirp.c')
-rw-r--r-- | slirp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -556,7 +556,7 @@ struct arphdr { unsigned char ar_tip[4]; /* target IP address */ }; -void arp_input(const uint8_t *pkt, int pkt_len) +static void arp_input(const uint8_t *pkt, int pkt_len) { struct ethhdr *eh = (struct ethhdr *)pkt; struct arphdr *ah = (struct arphdr *)(pkt + ETH_HLEN); |