summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.c b/main.c
index ace5c729be51..6f5b2f72fbc4 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.668 2026/03/13 04:22:03 sjg Exp $ */
+/* $NetBSD: main.c,v 1.669 2026/04/06 17:13:54 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -111,7 +111,7 @@
#include "trace.h"
/* "@(#)main.c 8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: main.c,v 1.668 2026/03/13 04:22:03 sjg Exp $");
+MAKE_RCSID("$NetBSD: main.c,v 1.669 2026/04/06 17:13:54 rillig Exp $");
#if defined(MAKE_NATIVE)
__COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993 "
"The Regents of the University of California. "
@@ -417,7 +417,7 @@ MainParseArgJobs(const char *arg)
double d;
if (*p == 'C')
- d = (opts.maxJobs > 0) ? opts.maxJobs : 1;
+ d = opts.maxJobs > 0 ? opts.maxJobs : 1;
else if (*p == '.') {
d = strtod(arg, &end);
p = end;