aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2007-04-26 07:57:44 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2007-04-26 07:57:44 +0000
commit897211856117d9607221130d77d578466e76e46a (patch)
treeda7b3e6314a0973cea9f9fd1e99d3cdc9835b497 /gtk
parent152667dbfa1aece1a784a896b61665d2ee8b194a (diff)
mtp3_addr_to_str_buf() and mtp3_pc_hash() expect to be passed a pointer
to a mtp3_addr_pc_t; declare them as such, and pass the argument as such. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21595 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk')
-rw-r--r--gtk/mtp3_stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/mtp3_stat.c b/gtk/mtp3_stat.c
index 95e388fb3c..54faa34dd2 100644
--- a/gtk/mtp3_stat.c
+++ b/gtk/mtp3_stat.c
@@ -189,10 +189,10 @@ mtp3_stat_draw(
{
row_offset = i * MTP3_NUM_SI_CODE;
- mtp3_addr_to_str_buf((guint8 *) &(*stat_p)[i].addr_opc, str, 256);
+ mtp3_addr_to_str_buf(&(*stat_p)[i].addr_opc, str, 256);
dlg.entries[0] = g_strdup(str);
- mtp3_addr_to_str_buf((guint8 *) &(*stat_p)[i].addr_dpc, str, 256);
+ mtp3_addr_to_str_buf(&(*stat_p)[i].addr_dpc, str, 256);
dlg.entries[1] = g_strdup(str);
for (j=0; j < MTP3_NUM_SI_CODE; j++)