From: Lennart Poettering Date: Tue, 5 Dec 2017 15:42:58 +0000 (+0100) Subject: hexdecoct: fix comment typo (#7548) X-Git-Tag: v236~67 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0eb89fe6b6e48177047c8aaa109b3174642c5750;p=thirdparty%2Fsystemd.git hexdecoct: fix comment typo (#7548) --- diff --git a/src/basic/hexdecoct.c b/src/basic/hexdecoct.c index e080aaa175c..fe7e4954ef4 100644 --- a/src/basic/hexdecoct.c +++ b/src/basic/hexdecoct.c @@ -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);