diff options
author | Rob Landley <rob@landley.net> | 2020-05-27 15:57:19 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-05-27 15:57:19 -0500 |
commit | 1e12560bc40d68270dd922c8d3cdfc3e842bafcb (patch) | |
tree | 7953fd0c10faf807b9d466ddcdc2d2f045c5c4b7 /toys | |
parent | d675088beebee75e71b200d0d51cfd28ff01f08c (diff) | |
download | toybox-1e12560bc40d68270dd922c8d3cdfc3e842bafcb.tar.gz |
Trivial cleanup.
Diffstat (limited to 'toys')
-rw-r--r-- | toys/pending/traceroute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/pending/traceroute.c b/toys/pending/traceroute.c index 56f8bcf5..c6bcfc31 100644 --- a/toys/pending/traceroute.c +++ b/toys/pending/traceroute.c @@ -218,7 +218,7 @@ static void do_trace() fflush(NULL); if (!TT.istraceroute6) - if (probe && (toys.optflags & FLAG_z)) usleep(TT.pause_time * 1000); + if (probe && (toys.optflags & FLAG_z)) msleep(TT.pause_time); if (!TT.istraceroute6) send_probe4(++seq, ttl); else send_probe6(++seq, ttl); |