summaryrefslogtreecommitdiff
path: root/src/basic/hexdecoct.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2017-12-05 16:42:58 +0100
committerSven Eden <yamakuzure@gmx.net>2017-12-05 16:42:58 +0100
commitab72df649f114d27cb6c7cd7c8c41cf755d62699 (patch)
treee6e8c60e96d6af33eceba68932e9b5e6c5b682f5 /src/basic/hexdecoct.c
parent14728b9406dccbf6a74f21aaa1cc524273edbb15 (diff)
hexdecoct: fix comment typo (#7548)
Diffstat (limited to 'src/basic/hexdecoct.c')
-rw-r--r--src/basic/hexdecoct.c2
1 files changed, 1 insertions, 1 deletions
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);