aboutsummaryrefslogtreecommitdiffstats
path: root/epan/to_str.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-04-26 07:57:44 +0000
committerGuy Harris <guy@alum.mit.edu>2007-04-26 07:57:44 +0000
commit08ab8d873444e9a944ff9ed1a856655a8a01322f (patch)
treeda7b3e6314a0973cea9f9fd1e99d3cdc9835b497 /epan/to_str.c
parentccac0e798358b53f4efea8988421f7a8c26ffaa5 (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. svn path=/trunk/; revision=21595
Diffstat (limited to 'epan/to_str.c')
-rw-r--r--epan/to_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/to_str.c b/epan/to_str.c
index ffd22e82f2..e73b6596d1 100644
--- a/epan/to_str.c
+++ b/epan/to_str.c
@@ -896,7 +896,7 @@ address_to_str_buf(const address *addr, gchar *buf, int buf_len)
g_snprintf(buf, buf_len, "%02x.%02x.%02x", addrdata[0], addrdata[1], addrdata[2]);
break;
case AT_SS7PC:
- mtp3_addr_to_str_buf(addr->data, buf, buf_len);
+ mtp3_addr_to_str_buf((const mtp3_addr_pc_t *)addr->data, buf, buf_len);
break;
case AT_STRINGZ:
addrstr = addr->data;