Browse Source

mdig: fix stats display on 32-bit systems with 64-bit time_t

pull/392/head
bol-van 7 months ago
parent
commit
d014ffe0ba
  1. BIN
      binaries/aarch64/mdig
  2. BIN
      binaries/arm/mdig
  3. BIN
      binaries/mips32r1-lsb/mdig
  4. BIN
      binaries/mips32r1-msb/mdig
  5. BIN
      binaries/mips64r2-msb/mdig
  6. BIN
      binaries/ppc/mdig
  7. BIN
      binaries/x86/mdig
  8. BIN
      binaries/x86_64/mdig
  9. 2
      mdig/mdig.c

BIN
binaries/aarch64/mdig

Binary file not shown.

BIN
binaries/arm/mdig

Binary file not shown.

BIN
binaries/mips32r1-lsb/mdig

Binary file not shown.

BIN
binaries/mips32r1-msb/mdig

Binary file not shown.

BIN
binaries/mips64r2-msb/mdig

Binary file not shown.

BIN
binaries/ppc/mdig

Binary file not shown.

BIN
binaries/x86/mdig

Binary file not shown.

BIN
binaries/x86_64/mdig

Binary file not shown.

2
mdig/mdig.c

@ -156,7 +156,7 @@ static void stat_print(int ct, int ct_ok)
if (glob.stats_every > 0)
{
time_t tm = time(NULL)-glob.start_time;
interlocked_fprintf(stderr, "mdig stats : %02u:%02u:%02u : domains=%d success=%d error=%d\n", tm/3600, (tm/60)%60, tm%60, ct, ct_ok, ct - ct_ok);
interlocked_fprintf(stderr, "mdig stats : %02u:%02u:%02u : domains=%d success=%d error=%d\n", (unsigned int)(tm/3600), (unsigned int)((tm/60)%60), (unsigned int)(tm%60), ct, ct_ok, ct - ct_ok);
}
}

Loading…
Cancel
Save