diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-12-05 16:42:58 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2017-12-05 16:42:58 +0100 |
commit | 0eb89fe6b6e48177047c8aaa109b3174642c5750 (patch) | |
tree | 4aff43b5be539d204b1ce5a1da212599ff96e50d /src/basic/hexdecoct.c | |
parent | Merge pull request #7542 from yuwata/build-cleanup (diff) | |
download | systemd-0eb89fe6b6e48177047c8aaa109b3174642c5750.tar.xz systemd-0eb89fe6b6e48177047c8aaa109b3174642c5750.zip |
hexdecoct: fix comment typo (#7548)
Diffstat (limited to 'src/basic/hexdecoct.c')
-rw-r--r-- | src/basic/hexdecoct.c | 2 |
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); |