diff options
author | Lennart Poettering <lennart@poettering.net> | 2019-11-01 11:31:20 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2019-11-01 11:31:20 +0100 |
commit | dfaf16ebed8b5be645c645623f1593db5f5d0ba0 (patch) | |
tree | 95f094bbac5b6243305998d2fecd501847270b65 /src/basic | |
parent | 0e06a03165bdec49c79d12043e690d8f3a672812 (diff) | |
download | systemd-dfaf16ebed8b5be645c645623f1593db5f5d0ba0.tar.gz |
static-destruct: add missing closing '(' in comment
Diffstat (limited to 'src/basic')
-rw-r--r-- | src/basic/static-destruct.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/basic/static-destruct.h b/src/basic/static-destruct.h index 443c0e8ebb..8fbc07c587 100644 --- a/src/basic/static-destruct.h +++ b/src/basic/static-destruct.h @@ -40,8 +40,8 @@ typedef struct StaticDestructor { extern const struct StaticDestructor _weak_ __start_SYSTEMD_STATIC_DESTRUCT[]; extern const struct StaticDestructor _weak_ __stop_SYSTEMD_STATIC_DESTRUCT[]; -/* The function to destroy everything. (Note that this must be static inline, as it's key that it remains in the same - * linking unit as the variables we want to destroy. */ +/* The function to destroy everything. (Note that this must be static inline, as it's key that it remains in + * the same linking unit as the variables we want to destroy.) */ static inline void static_destruct(void) { const StaticDestructor *d; |