From 728741e35ef93d7512a5934351c44bfaee7c1144 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Mon, 5 Aug 2019 13:02:29 +0200 Subject: Remove register qualifier. Let the compiler sort out register allocation. --- base64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base64.c') diff --git a/base64.c b/base64.c index 3cd41691..9af84a48 100644 --- a/base64.c +++ b/base64.c @@ -66,7 +66,7 @@ int from64tobits(void *out_, const char *in, int maxlen) /* maxlen limits output buffer size, set to zero to ignore */ { int len = 0; - register unsigned char digit1, digit2, digit3, digit4; + unsigned char digit1, digit2, digit3, digit4; unsigned char *out = (unsigned char *)out_; if (in[0] == '+' && in[1] == ' ') -- cgit v1.2.3