From e9bd704c891bfd077beee12f390e18eb6b521729 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Sat, 6 Dec 2025 13:53:40 -0600 Subject: [PATCH] Tweaked multiline ifdef style Prefixing with operators greatly improves multiline expression readability, IMO. --- lfs3_util.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lfs3_util.h b/lfs3_util.h index 52ef96b8..068dc8d0 100644 --- a/lfs3_util.h +++ b/lfs3_util.h @@ -118,11 +118,11 @@ #ifndef LFS3_NO_ASSERT #include #endif -#if !defined(LFS3_NO_DEBUG) || \ - !defined(LFS3_NO_INFO) || \ - !defined(LFS3_NO_WARN) || \ - !defined(LFS3_NO_ERROR) || \ - defined(LFS3_YES_TRACE) +#if !defined(LFS3_NO_DEBUG) \ + || !defined(LFS3_NO_INFO) \ + || !defined(LFS3_NO_WARN) \ + || !defined(LFS3_NO_ERROR) \ + || defined(LFS3_YES_TRACE) #include #endif