Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-05-09 22:07:15 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2008-05-09 22:07:15 +0400
commit023dc6798e05373bf33d64221bbe6a7265734c34 (patch)
treec111bcbb60f73790b29f7dd4f030f8c1e87b29a8 /coreutils/md5_sha1_sum.c
parent98636eb08c5ecc216e18970e11f7021206ac9b04 (diff)
fix warnings about pointer signedness
Diffstat (limited to 'coreutils/md5_sha1_sum.c')
-rw-r--r--coreutils/md5_sha1_sum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/md5_sha1_sum.c b/coreutils/md5_sha1_sum.c
index 2e1c96459..c81619493 100644
--- a/coreutils/md5_sha1_sum.c
+++ b/coreutils/md5_sha1_sum.c
@@ -21,7 +21,7 @@ static unsigned char *hash_bin_to_hex(unsigned char *hash_value,
/* xzalloc zero-terminates */
char *hex_value = xzalloc((hash_length * 2) + 1);
bin2hex(hex_value, (char*)hash_value, hash_length);
- return hex_value;
+ return (unsigned char *)hex_value;
}
static uint8_t *hash_file(const char *filename, hash_algo_t hash_algo)