summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorNathan Walp <nwalp@pidgin.im>2003-05-20 01:31:56 +0000
committerNathan Walp <nwalp@pidgin.im>2003-05-20 01:31:56 +0000
commitcc4a95256a7d9df6e236c082808f7b6cfea92a07 (patch)
tree31f67480b98b4359da436f229992e949e75c2709 /src/util.h
parentc6b3edba57c6c0253b861bd8d11ff0ce0ec1e613 (diff)
downloadpidgin-cc4a95256a7d9df6e236c082808f7b6cfea92a07.tar.gz
[gaim-migrate @ 5839]
some compile cleanups, and more importantly, the rest of that tobase16 fix that I forgot about
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.h b/src/util.h
index 59ef389a10..30f1ec8a89 100644
--- a/src/util.h
+++ b/src/util.h
@@ -73,14 +73,14 @@ void frombase64(const char *str, char **ret_str, int *ret_len);
*
* @see frombase16()
*/
-char *tobase16(const char *str, int len);
+unsigned char *tobase16(const unsigned char *str, int len);
/**
* Converts a string back from its base-16 equivalent.
*
* @param str The string to convert back.
* @param ret_str The returned, non-base-16 string.
- *
+ *
* @return The length of the returned string.
*
* @see tobase16()