mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 03:17:41 +03:00
Use unsigned type for array indexing
This fixes compilation warning about '-Wchar-subscripts'.
This commit is contained in:
parent
eb13b0adb7
commit
be2cc10844
1 changed files with 4 additions and 4 deletions
|
@ -37,10 +37,10 @@ b64_to_bin(unsigned char * const bin, const char *b64,
|
|||
return NULL;
|
||||
}
|
||||
while (i-- > 0U) {
|
||||
t0 = rev64chars[*b64++];
|
||||
t1 = rev64chars[*b64++];
|
||||
t2 = rev64chars[*b64++];
|
||||
t3 = rev64chars[*b64++];
|
||||
t0 = rev64chars[*b64_u++];
|
||||
t1 = rev64chars[*b64_u++];
|
||||
t2 = rev64chars[*b64_u++];
|
||||
t3 = rev64chars[*b64_u++];
|
||||
t = t3 | ((uint32_t) t2 << 6) | ((uint32_t) t1 << 12) |
|
||||
((uint32_t) t0 << 18);
|
||||
mask = t0 | t1 | t2 | t3;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue