From: Lennart Poettering Date: Tue, 5 Dec 2017 15:42:58 +0000 (+0100) Subject: hexdecoct: fix comment typo (#7548) X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=ab72df649f114d27cb6c7cd7c8c41cf755d62699;p=elogind.git hexdecoct: fix comment typo (#7548) --- diff --git a/src/basic/hexdecoct.c b/src/basic/hexdecoct.c index 689f51f4e..954afbf66 100644 --- a/src/basic/hexdecoct.c +++ b/src/basic/hexdecoct.c @@ -694,7 +694,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);