diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-11-16 09:08:12 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-11-16 09:21:22 +0100 |
commit | 1990bc64cdc6058ba54199632279d8106c51fdea (patch) | |
tree | 3cdda19e41e38b911d446a8122745c975fdf6be2 /src/basic/errno-util.h | |
parent | docs: mention RET_NERRNO() in CODING_STYLE.md (diff) | |
download | systemd-1990bc64cdc6058ba54199632279d8106c51fdea.tar.xz systemd-1990bc64cdc6058ba54199632279d8106c51fdea.zip |
basic/errno-util: adjust indentation
It was bothering me that this backslash wasn't aligned with the
ones below.
Diffstat (limited to 'src/basic/errno-util.h')
-rw-r--r-- | src/basic/errno-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/errno-util.h b/src/basic/errno-util.h index 6d79723b39..8cd7de5bc8 100644 --- a/src/basic/errno-util.h +++ b/src/basic/errno-util.h @@ -13,7 +13,7 @@ static inline void _reset_errno_(int *saved_errno) { errno = *saved_errno; } -#define PROTECT_ERRNO \ +#define PROTECT_ERRNO \ _cleanup_(_reset_errno_) _unused_ int _saved_errno_ = errno #define UNPROTECT_ERRNO \ |