2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

1000 nanoseconds in a microsecond, not 10000

This commit is contained in:
Bob Halley
1999-11-04 21:40:49 +00:00
parent a2cc581af9
commit f924db5119

View File

@@ -223,7 +223,7 @@ isc_time_microdiff(isc_time_t *t1, isc_time_t *t2) {
/*
* Convert to microseconds.
*/
i3 = (i1 - i2) / 10000;
i3 = (i1 - i2) / 1000;
return (i3);
}