aboutsummaryrefslogtreecommitdiffstats
path: root/epan/strutil.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2004-01-25 16:58:25 +0000
committerJörg Mayer <jmayer@loplof.de>2004-01-25 16:58:25 +0000
commitc61e9f6ed04aa4d391185e24d5e0a0133397f817 (patch)
treee66e8f6da245f5eea007b5de2dfafa014f42caf2 /epan/strutil.c
parent153f554b0172f348340ce5c6762a7d2d81efe5da (diff)
Change the first arg to hex_str_to_bytes from guchar* -> char*
svn path=/trunk/; revision=9842
Diffstat (limited to 'epan/strutil.c')
-rw-r--r--epan/strutil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/strutil.c b/epan/strutil.c
index c3386994ab..b275d76612 100644
--- a/epan/strutil.c
+++ b/epan/strutil.c
@@ -1,7 +1,7 @@
/* strutil.c
* String utility routines
*
- * $Id: strutil.c,v 1.15 2003/12/29 19:53:52 guy Exp $
+ * $Id: strutil.c,v 1.16 2004/01/25 16:58:25 jmayer Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -312,7 +312,7 @@ is_byte_sep(guint8 c)
* is_byte_sep() into a byte array.
*/
gboolean
-hex_str_to_bytes(const guchar *hex_str, GByteArray *bytes) {
+hex_str_to_bytes(const char *hex_str, GByteArray *bytes) {
guint8 val;
guchar *p, *q, *punct;
char two_digits[3];