aboutsummaryrefslogtreecommitdiffstats
path: root/tap-rtp.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-02-03 14:44:21 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-02-03 14:44:21 +0000
commitfe1751928ce228617657397d98eb1122ed01db6f (patch)
tree20ea53d866ecbeba6fef6b24a944d7b8be9affdf /tap-rtp.c
parent66e329cd2afc32758029366ce39e8428a9d12bc8 (diff)
Removed C++ style comments.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24257 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-rtp.c')
-rw-r--r--tap-rtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tap-rtp.c b/tap-rtp.c
index eba7e9ab58..72010ac1d1 100644
--- a/tap-rtp.c
+++ b/tap-rtp.c
@@ -85,7 +85,7 @@ rtp_streams_stat_draw(void *arg _U_)
{
strinfo = (rtp_stream_info_t*)(list->data);
- // payload type
+ /* payload type */
if(strinfo->pt>95){
if(strinfo->info_payload_type_str != NULL){
payload_type = g_strdup(strinfo->info_payload_type_str);
@@ -98,7 +98,7 @@ rtp_streams_stat_draw(void *arg _U_)
"Unknown (%u)"));
}
- // packet count, lost packets
+ /* packet count, lost packets */
expected = (strinfo->rtp_stats.stop_seq_nr + strinfo->rtp_stats.cycles*65536)
- strinfo->rtp_stats.start_seq_nr + 1;
lost = expected - strinfo->rtp_stats.total_nr;