literal suffix

This commit is contained in:
Francois Perrad 2019-10-06 16:13:44 +02:00
parent 62a09c66ca
commit 8adc0fc328

View File

@ -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];