wok-current rev 23703
fusecloop: typo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Apr 28 08:38:50 2020 +0000 (2020-04-28) |
parents | adc1d6ae992b |
children | fab664cb3963 |
files | fusecloop/stuff/fusecloop.u |
line diff
1.1 --- a/fusecloop/stuff/fusecloop.u Tue Apr 28 07:57:17 2020 +0000 1.2 +++ b/fusecloop/stuff/fusecloop.u Tue Apr 28 08:38:50 2020 +0000 1.3 @@ -405,7 +405,7 @@ 1.4 + const char *cp = (const char *) hash; 1.5 + while (count) { 1.6 + unsigned char c = *cp++; 1.7 -+ /* put lowercase hex digits */ 1.8 ++ // put lowercase hex digits 1.9 + *p++ = bb_hexdigits_upcase[c >> 4]; 1.10 + *p++ = bb_hexdigits_upcase[c & 0xf]; 1.11 + count--;