aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ipv4.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2004-02-01 02:35:30 +0000
committerJörg Mayer <jmayer@loplof.de>2004-02-01 02:35:30 +0000
commit4023150e25ec70b17a504f7332b3cacdfd6db2b2 (patch)
tree44862d9e255f3fa3c7542200c030020c2a84a814 /epan/ipv4.c
parentd9b6e98297fc56d75d9f7b806a4d8f927bcd3340 (diff)
signed/unsigend warning fixes
svn path=/trunk/; revision=9931
Diffstat (limited to 'epan/ipv4.c')
-rw-r--r--epan/ipv4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/ipv4.c b/epan/ipv4.c
index 22e60d0053..45de381d20 100644
--- a/epan/ipv4.c
+++ b/epan/ipv4.c
@@ -5,7 +5,7 @@
*
* Gilbert Ramirez <gram@alumni.rice.edu>
*
- * $Id: ipv4.c,v 1.6 2003/08/19 18:30:44 guy Exp $
+ * $Id: ipv4.c,v 1.7 2004/02/01 02:35:29 jmayer Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -89,7 +89,7 @@ void
ipv4_addr_str_buf(const ipv4_addr *ipv4, gchar *buf)
{
guint32 ipv4_host_order = g_htonl(ipv4->addr);
- ip_to_str_buf((gchar*)&ipv4_host_order, buf);
+ ip_to_str_buf((guint8*)&ipv4_host_order, buf);
}
static guint32