diff src/util.c @ 5451:e1cc0c67e123

[gaim-migrate @ 5839] some compile cleanups, and more importantly, the rest of that tobase16 fix that I forgot about committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 20 May 2003 01:31:56 +0000
parents bb1e160467b6
children 3c7748b24410
line wrap: on
line diff
--- a/src/util.c	Tue May 20 00:45:35 2003 +0000
+++ b/src/util.c	Tue May 20 01:31:56 2003 +0000
@@ -467,7 +467,7 @@
 /*
  * Converts raw data to a pretty, null-terminated base16 string.
  */
-char *tobase16(const char *data, int length)
+unsigned char *tobase16(const unsigned char *data, int length)
 {
 	int i;
 	unsigned char *ascii = NULL;