hexdecoct: fix comment typo (#7548)

This commit is contained in:
Lennart Poettering 2017-12-05 16:42:58 +01:00 committed by Yu Watanabe
parent 3aa6a55904
commit 0eb89fe6b6

View file

@ -695,7 +695,7 @@ int unbase64mem(const char *p, size_t l, void **ret, size_t *ret_size) {
break;
if (a < 0)
return a;
if (a == INT_MAX) /* Padding is not allowed at at the beginning of a 4ch block */
if (a == INT_MAX) /* Padding is not allowed at the beginning of a 4ch block */
return -EINVAL;
b = unbase64_next(&x, &l);