From: Harald Seiler Date: Mon, 15 Jun 2020 07:47:04 +0000 (+0200) Subject: common: hash: Remove a debug printf statement X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=7a81989b7b04bd87d1e684f2bafdc92a9c16fecc;p=u-boot.git common: hash: Remove a debug printf statement Remove a left-over debug printf that was introduced with SHA512 support. Fixes: d16b38f42704 ("Add support for SHA384 and SHA512") Signed-off-by: Harald Seiler --- diff --git a/common/hash.c b/common/hash.c index 5c75848b7d..05238a8ba9 100644 --- a/common/hash.c +++ b/common/hash.c @@ -146,8 +146,6 @@ static int hash_finish_sha512(struct hash_algo *algo, void *ctx, void if (size < algo->digest_size) return -1; - printf("hello world\n"); - sha512_finish((sha512_context *)ctx, dest_buf); free(ctx); return 0;