From 29c163959cfe9b25a4f431e7a504905da5309cb7 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Thu, 10 Feb 2022 09:06:29 +0100 Subject: [PATCH] Indent ifdef for clarity Make it explicit that the ifdef is an inner block. --- app/src/cli.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/cli.c b/app/src/cli.c index 6e58feff..5251c47c 100644 --- a/app/src/cli.c +++ b/app/src/cli.c @@ -1690,12 +1690,12 @@ parse_args_with_getopt(struct scrcpy_cli_args *args, int argc, char *argv[], LOGE("OTG mode: could not select display"); return false; } -#ifdef HAVE_V4L2 +# ifdef HAVE_V4L2 if (opts->v4l2_device) { LOGE("OTG mode: could not sink to V4L2 device"); return false; } -#endif +# endif } #endif