From f2f4903de4bd3ce06c03dd66f0c9a7dda97a3550 Mon Sep 17 00:00:00 2001 From: NRK Date: Fri, 10 Feb 2023 11:35:53 +0600 Subject: apply clang-format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit minus the bogus changes Co-authored-by: Berke Kocaoğlu --- options.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'options.c') diff --git a/options.c b/options.c index 6231d03..ef874ac 100644 --- a/options.c +++ b/options.c @@ -43,7 +43,8 @@ void print_usage(void) { printf("usage: %s [-abcfhiopqrtvZ0] [-A FRAMERATE] [-e WID] [-G GAMMA] " "[-g GEOMETRY] [-N NAME] [-n NUM] [-S DELAY] [-s MODE] " - "[-z ZOOM] FILES...\n", progname); + "[-z ZOOM] FILES...\n", + progname); } static void print_version(void) @@ -227,7 +228,7 @@ void parse_options(int argc, char **argv) if (*end != '\0' || n <= 0) error(EXIT_FAILURE, 0, "Invalid zoom level: %s", op.optarg); _options.scalemode = SCALE_ZOOM; - _options.zoom = (float) n / 100.0f; + _options.zoom = (float)n / 100.0f; break; case '0': _options.using_null = true; -- cgit v1.2.3-54-g00ecf