literal suffix
This commit is contained in:
parent
62a09c66ca
commit
8adc0fc328
@ -9,8 +9,8 @@ void s_mp_reverse(unsigned char *s, size_t len)
|
||||
size_t ix, iy;
|
||||
unsigned char t;
|
||||
|
||||
ix = 0;
|
||||
iy = len - 1;
|
||||
ix = 0u;
|
||||
iy = len - 1u;
|
||||
while (ix < iy) {
|
||||
t = s[ix];
|
||||
s[ix] = s[iy];
|
||||
|
Loading…
Reference in New Issue
Block a user