1
0
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:
Jim Meyering
1999-11-27 20:01:22 +00:00
parent 5617251659
commit 069610a0f0

View File

@@ -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);