mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-20 18:56:39 +02:00
fix typos
This commit is contained in:
@@ -260,9 +260,8 @@ main (int argc, char **argv)
|
||||
negative = timeval_subtract (&diff, &tv_done, &tv_now);
|
||||
if (negative)
|
||||
break;
|
||||
tv_sleep (&diff);
|
||||
sleep (diff->tv_sec);
|
||||
usleep (diff->tv_usec);
|
||||
sleep (diff.tv_sec);
|
||||
usleep (diff.tv_usec);
|
||||
}
|
||||
|
||||
exit (0);
|
||||
|
||||
Reference in New Issue
Block a user