From ab72df649f114d27cb6c7cd7c8c41cf755d62699 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 5 Dec 2017 16:42:58 +0100 Subject: [PATCH] hexdecoct: fix comment typo (#7548) --- src/basic/hexdecoct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2