summaryrefslogtreecommitdiff
path: root/src/basic/hexdecoct.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2017-12-05 16:42:58 +0100
committerYu Watanabe <watanabe.yu+github@gmail.com>2017-12-06 00:42:58 +0900
commit0eb89fe6b6e48177047c8aaa109b3174642c5750 (patch)
tree4aff43b5be539d204b1ce5a1da212599ff96e50d /src/basic/hexdecoct.c
parent3aa6a559040dda5f5db061d77ef5c5aaf3b33501 (diff)
downloadsystemd-0eb89fe6b6e48177047c8aaa109b3174642c5750.tar.gz
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 e080aaa175..fe7e4954ef 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);