Module Name:    src
Committed By:   rillig
Date:           Sat Jan 15 22:18:04 UTC 2022

Modified Files:
        src/usr.bin/make: main.c

Log Message:
make: remove extra semicolon after statement

Lint will complain about this very soon.

No binary change.


To generate a diff of this commit:
cvs rdiff -u -r1.572 -r1.573 src/usr.bin/make/main.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/make/main.c
diff -u src/usr.bin/make/main.c:1.572 src/usr.bin/make/main.c:1.573
--- src/usr.bin/make/main.c:1.572	Sat Jan 15 19:34:07 2022
+++ src/usr.bin/make/main.c	Sat Jan 15 22:18:04 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: main.c,v 1.572 2022/01/15 19:34:07 rillig Exp $	*/
+/*	$NetBSD: main.c,v 1.573 2022/01/15 22:18:04 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.572 2022/01/15 19:34:07 rillig Exp $");
+MAKE_RCSID("$NetBSD: main.c,v 1.573 2022/01/15 22:18:04 rillig Exp $");
 #if defined(MAKE_NATIVE) && !defined(lint)
 __COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993 "
 	    "The Regents of the University of California.  "
@@ -1715,7 +1715,7 @@ Cmd_Exec(const char *cmd, char **error)
 	if (pipe(pipefds) == -1) {
 		*error = str_concat3(
 		    "Couldn't create pipe for \"", cmd, "\"");
-		return bmake_strdup("");;
+		return bmake_strdup("");
 	}
 
 	Var_ReexportVars();

Reply via email to