From 00814dd1592a81e72097a140cecaad3aac6d9134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 9 Feb 2016 23:51:45 +0100 Subject: [PATCH] shell: Fix another indentation warning The compiler doesn't know about preprocessor conditionals, so indentation changes confuse -Wmisleading-indentation. --- src/shell-recorder.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/shell-recorder.c b/src/shell-recorder.c index 8a907a93e..62ef0c4cc 100644 --- a/src/shell-recorder.c +++ b/src/shell-recorder.c @@ -1258,12 +1258,12 @@ substitute_thread_count (const char *pipeline) return g_strdup (pipeline); #ifdef _SC_NPROCESSORS_ONLN - { - int n_processors = sysconf (_SC_NPROCESSORS_ONLN); /* includes hyper-threading */ - n_threads = MIN (MAX (1, n_processors - 1), 64); - } + { + int n_processors = sysconf (_SC_NPROCESSORS_ONLN); /* includes hyper-threading */ + n_threads = MIN (MAX (1, n_processors - 1), 64); + } #else - n_threads = 3; + n_threads = 3; #endif result = g_string_new (NULL);