aboutsummaryrefslogtreecommitdiffstats
path: root/epan/to_str.h
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-10 12:50:19 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-10 12:50:19 +0000
commite71a81e2b3bdcf45049469675fd4640e6cdb00ea (patch)
tree1d87f285d1e098c47669bf6a3bc5c417118c272d /epan/to_str.h
parent07d67ef7c0a24215a3d6d78e106a8f80cf9302c2 (diff)
to_str.c declares this: gchar* ip6_to_str ..., make to_str.h do the same
(char -> gchar) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9629 f5534014-38df-0310-8fa8-9805f1628bb7
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);