From 9d36ee9b4003050683eace1ed6a89be5a9f2a518 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sat, 24 Dec 2011 09:33:30 +1100 Subject: [PATCH] Do not add blank lines when there are less cpu threads enabled than processors. --- main.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/main.c b/main.c index 036a31ab..6c317491 100644 --- a/main.c +++ b/main.c @@ -5829,7 +5829,13 @@ int main (int argc, char *argv[]) logcursor = 8; gpucursor = logcursor; cpucursor = gpucursor + nDevs; - logstart = cpucursor + (opt_n_threads ? num_processors : 0) + 1; + logstart = cpucursor + 1; + if (opt_n_threads) { + if (opt_n_threads < num_processors) + logstart += opt_n_threads; + else + logstart += num_processors; + } logcursor = logstart + 1; if (opt_realquiet)