aboutsummaryrefslogtreecommitdiffstats
path: root/epan/to_str.h
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2004-01-10 12:50:19 +0000
committerJörg Mayer <jmayer@loplof.de>2004-01-10 12:50:19 +0000
commitebc0b265bd9b1084771b52b37b0bec6932678827 (patch)
tree1d87f285d1e098c47669bf6a3bc5c417118c272d /epan/to_str.h
parent4c047130c807f89bfdc4f27d0e0c46b52e7d77f8 (diff)
to_str.c declares this: gchar* ip6_to_str ..., make to_str.h do the same
(char -> gchar) svn path=/trunk/; revision=9629
Diffstat (limited to 'epan/to_str.h')
-rw-r--r--epan/to_str.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/to_str.h b/epan/to_str.h
index 3c2a84b9af..bf71418871 100644
--- a/epan/to_str.h
+++ b/epan/to_str.h
@@ -1,7 +1,7 @@
/* to_str.h
* Definitions for utilities to convert various other types to strings.
*
- * $Id: to_str.h,v 1.21 2003/12/09 05:06:22 guy Exp $
+ * $Id: to_str.h,v 1.22 2004/01/10 12:50:19 jmayer Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -53,7 +53,7 @@ extern gchar* ip_to_str(const guint8 *);
extern void ip_to_str_buf(const guint8 *, gchar *);
extern gchar* fc_to_str(const guint8 *);
extern gchar* fcwwn_to_str (const guint8 *);
-extern char* ip6_to_str(const struct e_in6_addr *);
+extern gchar* ip6_to_str(const struct e_in6_addr *);
extern void ip6_to_str_buf(const struct e_in6_addr *, gchar *);
extern gchar* ipx_addr_to_str(guint32, const guint8 *);
extern gchar* ipxnet_to_string(const guint8 *ad);