diff options
author | Rob Landley <rob@landley.net> | 2006-08-01 00:30:26 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-08-01 00:30:26 +0000 |
commit | cae61e7ca4200e976de1a790075ef1d7b5317bb2 (patch) | |
tree | 30116aecdca321830e11fadfd6dab36eb3de99e2 | |
parent | 2aced7ea043aff64bd4e5f2814818fb4d0c803d4 (diff) | |
download | busybox-cae61e7ca4200e976de1a790075ef1d7b5317bb2.tar.gz |
Make a gcc 4.1 warning go away.
-rw-r--r-- | networking/ping.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ping.c b/networking/ping.c index 518265668..5cd6f4a1a 100644 --- a/networking/ping.c +++ b/networking/ping.c @@ -211,7 +211,7 @@ static void sendping(int junk) pkt->icmp_type = ICMP_ECHO; pkt->icmp_code = 0; pkt->icmp_cksum = 0; - pkt->icmp_seq = htons(ntransmitted++); + pkt->icmp_seq = SWAP_BE16(ntransmitted++); pkt->icmp_id = myid; CLR(ntohs(pkt->icmp_seq) % MAX_DUP_CHK); |