Fix -r flag to actually work. "now" comes after "then", not vice versa.

MFC after:	1 day
This commit is contained in:
Nate Lawson 2005-12-06 14:13:39 +00:00
parent 7b2d0a3eee
commit c578cf5e86

View File

@ -253,7 +253,7 @@ main(int ac, char **av)
if (rflag) {
if (tlast == -1)
tlast = tnow;
fprintf(out, "%16ju ", tlast - tnow);
fprintf(out, "%16ju ", tnow - tlast);
tlast = tnow;
} else
fprintf(out, "%16ju ", tnow);