From: Yu Watanabe Date: Tue, 28 May 2024 03:25:26 +0000 (+0900) Subject: missing_loop: fix potential compile-time assertion X-Git-Tag: v256-rc4~106^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb45ced36802b98c24a8238d68bb86be7fa393e4;p=thirdparty%2Fsystemd.git missing_loop: fix potential compile-time assertion Fixes a bug introduced by 4d6437d33c45c3d31497f2e3bd8d415f775546b8. --- diff --git a/src/basic/missing_loop.h b/src/basic/missing_loop.h index c29082f519b..8a62155a5db 100644 --- a/src/basic/missing_loop.h +++ b/src/basic/missing_loop.h @@ -23,7 +23,7 @@ assert_cc(LOOP_CONFIGURE == 0x4C0A); # define LOOP_SET_DIRECT_IO 0x4C08 #else assert_cc(LO_FLAGS_DIRECT_IO == 16); -assert_cc(LO_FLAGS_DIRECT_IO == 0x4C08); +assert_cc(LOOP_SET_DIRECT_IO == 0x4C08); #endif #ifndef LOOP_SET_STATUS_SETTABLE_FLAGS