hours are not days

This commit is contained in:
Andy Janata 2012-01-31 17:58:46 -08:00
parent 6ed7eb60d5
commit 39216edca8
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ th, td {
long minutes = (uptime / 60L) % 60L;
long hours = (uptime / 60L / 60L) % 24L;
long days = (uptime / 60L / 60L / 24L);
out.print(String.format("%s (%d hours, %02d:%02d:%02d)",
out.print(String.format("%s (%d days, %02d:%02d:%02d)",
startedDate.toString(), days, hours, minutes, seconds));
%>
</p>