summaryrefslogtreecommitdiff
path: root/gtk/sip_stat.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2010-08-30 16:10:01 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2010-08-30 16:10:01 +0000
commitb4c2ed1b86949dd79ac107d7edbc0be68f59d618 (patch)
tree9ea32300dcac661f69c271986c4b92e56be5bde4 /gtk/sip_stat.c
parent05f5bf510b6c4c8533aba2823afe68089fb8c268 (diff)
downloadwireshark-b4c2ed1b86949dd79ac107d7edbc0be68f59d618.tar.gz
Remove some unnecessary includes: a lot of things don't need globals.h and register.h
svn path=/trunk/; revision=34017
Diffstat (limited to 'gtk/sip_stat.c')
-rw-r--r--gtk/sip_stat.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk/sip_stat.c b/gtk/sip_stat.c
index 2b7aca9515..fddc183433 100644
--- a/gtk/sip_stat.c
+++ b/gtk/sip_stat.c
@@ -36,7 +36,6 @@
#include <epan/dissectors/packet-sip.h>
#include "../simple_dialog.h"
-#include "../register.h"
#include "../globals.h"
#include "../stat_menu.h"
@@ -398,7 +397,7 @@ sipstat_packet(void *psp, packet_info *pinfo _U_, epan_dissect_t *edt _U_, const
sp->min_setup_time = value->setup_time;
}
/* Calculate average */
- sp->average_setup_time = (guint32)(sp->total_setup_time / sp->no_of_completed_calls);
+ sp->average_setup_time = (guint32)(sp->total_setup_time / sp->no_of_completed_calls);
}
}