Don't assign a const pointer argument to a non-const pointer variable.

svn path=/trunk/; revision=12891
This commit is contained in:
Guy Harris 2004-12-31 02:09:48 +00:00
parent caf46302c8
commit b39dd4b7cc
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ mtp3_addr_to_str_buf(
const guint8 *data,
gchar *buf)
{
mtp3_addr_pc_t *addr_pc_p = (mtp3_addr_pc_t *) data;
const mtp3_addr_pc_t *addr_pc_p = (const mtp3_addr_pc_t *)data;
switch (mtp3_net_addr_fmt)
{