aboutsummaryrefslogtreecommitdiff
path: root/contrib/bmake/buf.c
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2020-07-08 21:20:12 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2020-07-08 21:20:12 +0000
commit2d147b4741a5f1bd321bda1fe78f5947b5cb1f2b (patch)
tree4853db2280508f3cb1caee0a6d5635df9650ef09 /contrib/bmake/buf.c
parente18c80bcb6be66b1e3b6f4676ed681143b53f876 (diff)
parent1a2b743f6b4022dada4eeaa96ac47a5c1a2429f5 (diff)
Notes
Diffstat (limited to 'contrib/bmake/buf.c')
-rw-r--r--contrib/bmake/buf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/bmake/buf.c b/contrib/bmake/buf.c
index ac95c16c1586..360b8cedde13 100644
--- a/contrib/bmake/buf.c
+++ b/contrib/bmake/buf.c
@@ -1,4 +1,4 @@
-/* $NetBSD: buf.c,v 1.25 2012/04/24 20:26:58 sjg Exp $ */
+/* $NetBSD: buf.c,v 1.26 2020/07/03 08:02:55 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -70,14 +70,14 @@
*/
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: buf.c,v 1.25 2012/04/24 20:26:58 sjg Exp $";
+static char rcsid[] = "$NetBSD: buf.c,v 1.26 2020/07/03 08:02:55 rillig Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)buf.c 8.1 (Berkeley) 6/6/93";
#else
-__RCSID("$NetBSD: buf.c,v 1.25 2012/04/24 20:26:58 sjg Exp $");
+__RCSID("$NetBSD: buf.c,v 1.26 2020/07/03 08:02:55 rillig Exp $");
#endif
#endif /* not lint */
#endif
@@ -160,7 +160,7 @@ Buf_GetAll(Buffer *bp, int *numBytesPtr)
if (numBytesPtr != NULL)
*numBytesPtr = bp->count;
- return (bp->buffer);
+ return bp->buffer;
}
/*-