Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make(1): fix return type of ApplyModifier_Local...



details:   https://anonhg.NetBSD.org/src/rev/2aba52e9ef25
branches:  trunk
changeset: 938648:2aba52e9ef25
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sat Sep 12 22:12:17 2020 +0000

description:
make(1): fix return type of ApplyModifier_Localtime

diffstat:

 usr.bin/make/var.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (35 lines):

diff -r a2220726f1d4 -r 2aba52e9ef25 usr.bin/make/var.c
--- a/usr.bin/make/var.c        Sat Sep 12 21:30:36 2020 +0000
+++ b/usr.bin/make/var.c        Sat Sep 12 22:12:17 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: var.c,v 1.504 2020/09/12 20:03:37 rillig Exp $ */
+/*     $NetBSD: var.c,v 1.505 2020/09/12 22:12:17 rillig Exp $ */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: var.c,v 1.504 2020/09/12 20:03:37 rillig Exp $";
+static char rcsid[] = "$NetBSD: var.c,v 1.505 2020/09/12 22:12:17 rillig Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)var.c      8.3 (Berkeley) 3/19/94";
 #else
-__RCSID("$NetBSD: var.c,v 1.504 2020/09/12 20:03:37 rillig Exp $");
+__RCSID("$NetBSD: var.c,v 1.505 2020/09/12 22:12:17 rillig Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -2077,7 +2077,7 @@
 }
 
 /* :localtime */
-static Boolean
+static ApplyModifierResult
 ApplyModifier_Localtime(const char **pp, ApplyModifiersState *st)
 {
     time_t utc;



Home | Main Index | Thread Index | Old Index