2
0
mirror of https://github.com/Genymobile/scrcpy synced 2025-08-31 22:35:37 +00:00

Indent ifdef for clarity

Make it explicit that the ifdef is an inner block.
This commit is contained in:
Romain Vimont
2022-02-10 09:06:29 +01:00
parent 4a95c08d56
commit 29c163959c

View File

@@ -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