From: Bartosz Golaszewski Date: Tue, 31 Jan 2023 15:08:48 +0000 (+0100) Subject: gpioset: use #ifdef instead of #if with GPIOSET_INTERACTIVE X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=362b6b445bb69d4552a55729dae653a864c5de6f;p=qemu-gpiodev%2Flibgpiod.git gpioset: use #ifdef instead of #if with GPIOSET_INTERACTIVE We're not setting GPIOSET_INTERACTIVE to any specific value that we'd want to check so be consistent and use #ifdef everywhere to simply check if it's defined or not. Signed-off-by: Bartosz Golaszewski --- diff --git a/tools/gpioset.c b/tools/gpioset.c index 3aacfef..a7084a3 100644 --- a/tools/gpioset.c +++ b/tools/gpioset.c @@ -11,7 +11,7 @@ #include #include #include -#if GPIOSET_INTERACTIVE +#ifdef GPIOSET_INTERACTIVE #include #endif