diff options
author | Cendio <cendio@pairstation.lkpg.cendio.se> | 2017-11-09 16:56:31 +0100 |
---|---|---|
committer | Cendio <cendio@pairstation.lkpg.cendio.se> | 2017-11-09 16:56:31 +0100 |
commit | f2533e0431b11229fcc80b7d673e6f5c0ce7871c (patch) | |
tree | 82d44835519caeec3e4c09b4fe0047d57a28b9a0 | |
parent | 2f03f65efe785907376654a1e93f51a81b6cf134 (diff) | |
download | rdesktop-f2533e0431b11229fcc80b7d673e6f5c0ce7871c.zip |
Fix return type for hash function
-rw-r--r-- | utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ #include "types.h" -unsigned int utils_djb2_hash(const char *str); +uint32 utils_djb2_hash(const char *str); char *utils_string_escape(const char *str); char *utils_string_unescape(const char *str); int utils_locale_to_utf8(const char *src, size_t is, char *dest, size_t os); |