Correctly compute the minutes portion of the elapsed time.

svn path=/trunk/; revision=6797
This commit is contained in:
Guy Harris 2002-12-18 06:44:50 +00:00
parent 020effa6d0
commit 462a1b80b4
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/* capture.c
* Routines for packet capture windows
*
* $Id: capture.c,v 1.196 2002/12/08 22:35:30 guy Exp $
* $Id: capture.c,v 1.197 2002/12/18 06:44:50 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -1880,7 +1880,7 @@ capture(gboolean *stats_known, struct pcap_stat *stats)
/* calculate and display running time */
cur_time -= start_time;
snprintf(label_str, sizeof(label_str), "%02ld:%02ld:%02ld",
(long)(cur_time/3600), (long)(cur_time/60%3600),
(long)(cur_time/3600), (long)((cur_time%3600)/60),
(long)(cur_time%60));
gtk_label_set(GTK_LABEL(running_time), label_str);