]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
hexdecoct: fix comment typo (#7548)
authorLennart Poettering <lennart@poettering.net>
Tue, 5 Dec 2017 15:42:58 +0000 (16:42 +0100)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 5 Dec 2017 15:42:58 +0000 (00:42 +0900)
src/basic/hexdecoct.c

index e080aaa175ce0125a3329ef2685d4cfd93095077..fe7e4954ef4633db7a7ce847e1f3762b6c5277e6 100644 (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);