From a20cbbf50a4eb3cab0941b58b84bd0bf61d8053c Mon Sep 17 00:00:00 2001 From: rillig Date: Sat, 15 Jan 2022 22:18:04 +0000 Subject: [PATCH] make: remove extra semicolon after statement Lint will complain about this very soon. No binary change. --- usr.bin/make/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index 1a4e09db99dc..d67e9314cdc8 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -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();