diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2021-09-15 10:56:21 +0200 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2021-09-15 13:09:45 +0200 |
commit | d7ac09520be8f0d3d94df3dd4fd8a6e7404c0174 (patch) | |
tree | 834a60f9b7b22957ff572bcd979737992a0e7ae7 /src/shared/barrier.c | |
parent | ci: build with clang-13 (diff) | |
download | systemd-d7ac09520be8f0d3d94df3dd4fd8a6e7404c0174.tar.xz systemd-d7ac09520be8f0d3d94df3dd4fd8a6e7404c0174.zip |
tree-wide: mark set-but-not-used variables as unused to make LLVM happy
LLVM 13 introduced `-Wunused-but-set-variable` diagnostic flag, which
trips over some intentionally set-but-not-used variables or variables
attached to cleanup handlers with side effects (`_cleanup_umask_`,
`_cleanup_(notify_on_cleanup)`, `_cleanup_(restore_sigsetp)`, etc.):
```
../src/basic/process-util.c:1257:46: error: variable 'saved_ssp' set but not used [-Werror,-Wunused-but-set-variable]
_cleanup_(restore_sigsetp) sigset_t *saved_ssp = NULL;
^
1 error generated.
```
Diffstat (limited to 'src/shared/barrier.c')
-rw-r--r-- | src/shared/barrier.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/barrier.c b/src/shared/barrier.c index 2864c1b8f9..87061f55d7 100644 --- a/src/shared/barrier.c +++ b/src/shared/barrier.c @@ -90,7 +90,7 @@ * Returns: 0 on success, negative error code on failure. */ int barrier_create(Barrier *b) { - _cleanup_(barrier_destroyp) Barrier *staging = b; + _unused_ _cleanup_(barrier_destroyp) Barrier *staging = b; int r; assert(b); |