Browse Source

Do not add blank lines when there are less cpu threads enabled than processors.

Con Kolivas 14 years ago
parent
commit
9d36ee9b40
1 changed files with 7 additions and 1 deletions
  1. 7 1
      main.c

+ 7 - 1
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)