From 49d8fa1058aaf23c29e074b2314492ae40d2f557 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 21 Feb 2017 12:05:07 +0000 Subject: Types change: big pass on libstddjb and libunixonacid libdatastruct still missing, library still not functional --- src/libstdcrypto/sha256_update.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libstdcrypto/sha256_update.c') diff --git a/src/libstdcrypto/sha256_update.c b/src/libstdcrypto/sha256_update.c index 6d69469..d8bb3b1 100644 --- a/src/libstdcrypto/sha256_update.c +++ b/src/libstdcrypto/sha256_update.c @@ -6,6 +6,6 @@ void sha256_update (SHA256Schedule *ctx, char const *buf, size_t len) { - register size_t i = 0 ; + size_t i = 0 ; for (; i < len ; i++) sha256_feed(ctx, (unsigned char)buf[i]) ; } -- cgit v1.2.3