summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-11-01 11:31:20 +0100
committerLennart Poettering <lennart@poettering.net>2019-11-01 11:31:20 +0100
commitdfaf16ebed8b5be645c645623f1593db5f5d0ba0 (patch)
tree95f094bbac5b6243305998d2fecd501847270b65
parent0e06a03165bdec49c79d12043e690d8f3a672812 (diff)
downloadsystemd-dfaf16ebed8b5be645c645623f1593db5f5d0ba0.tar.gz
static-destruct: add missing closing '(' in comment
-rw-r--r--src/basic/static-destruct.h4
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;