aboutsummaryrefslogtreecommitdiffstats
path: root/ui/cli/tap-rtspstat.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-03-20 01:18:10 +0000
committerBill Meier <wmeier@newsguy.com>2013-03-20 01:18:10 +0000
commit0df5a9390d41149dfc87440d72e7669ba96748ec (patch)
tree8accf4dfc301adfc679ed7f21b7123cb4b2c55f9 /ui/cli/tap-rtspstat.c
parenta43e5a7eb9fe1ad5a89e7cfd556a791a50fefee7 (diff)
From beroset:
remove C++ incompatibilities https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 attachment #10397 svn path=/trunk/; revision=48438
Diffstat (limited to 'ui/cli/tap-rtspstat.c')
-rw-r--r--ui/cli/tap-rtspstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/cli/tap-rtspstat.c b/ui/cli/tap-rtspstat.c
index e372a94e6e..57623d6d61 100644
--- a/ui/cli/tap-rtspstat.c
+++ b/ui/cli/tap-rtspstat.c
@@ -243,7 +243,7 @@ gtk_rtspstat_init(const char *optarg,void* userdata _U_)
filter=NULL;
}
- sp = g_malloc( sizeof(rtspstat_t) );
+ sp = (rtspstat_t *)g_malloc( sizeof(rtspstat_t) );
if(filter){
sp->filter=g_strdup(filter);
} else {