summaryrefslogtreecommitdiffstats
path: root/contrib/bmake/str.c
diff options
context:
space:
mode:
authorsjg <sjg@FreeBSD.org>2016-05-20 17:35:39 +0000
committersjg <sjg@FreeBSD.org>2016-05-20 17:35:39 +0000
commit38da92cdf3d2e4e79de23a2cac45469eb3a03ec1 (patch)
tree94aee17178c240d7a9439c9058567346acd5f2a5 /contrib/bmake/str.c
parente1afa8a66332bcb42ea042ec5dfb59de5b33ee08 (diff)
downloadFreeBSD-src-38da92cdf3d2e4e79de23a2cac45469eb3a03ec1.zip
FreeBSD-src-38da92cdf3d2e4e79de23a2cac45469eb3a03ec1.tar.gz
Merge bmake-20160512
Diffstat (limited to 'contrib/bmake/str.c')
-rw-r--r--contrib/bmake/str.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/bmake/str.c b/contrib/bmake/str.c
index 0260447..5e4e8f6 100644
--- a/contrib/bmake/str.c
+++ b/contrib/bmake/str.c
@@ -1,4 +1,4 @@
-/* $NetBSD: str.c,v 1.35 2014/02/12 01:35:56 sjg Exp $ */
+/* $NetBSD: str.c,v 1.36 2016/04/06 09:57:00 gson Exp $ */
/*-
* Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
*/
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: str.c,v 1.35 2014/02/12 01:35:56 sjg Exp $";
+static char rcsid[] = "$NetBSD: str.c,v 1.36 2016/04/06 09:57:00 gson Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)str.c 5.8 (Berkeley) 6/1/90";
#else
-__RCSID("$NetBSD: str.c,v 1.35 2014/02/12 01:35:56 sjg Exp $");
+__RCSID("$NetBSD: str.c,v 1.36 2016/04/06 09:57:00 gson Exp $");
#endif
#endif /* not lint */
#endif
@@ -102,7 +102,7 @@ str_concat(const char *s1, const char *s2, int flags)
len2 = strlen(s2);
/* allocate length plus separator plus EOS */
- result = bmake_malloc((u_int)(len1 + len2 + 2));
+ result = bmake_malloc((unsigned int)(len1 + len2 + 2));
/* copy first string into place */
memcpy(result, s1, len1);
OpenPOWER on IntegriCloud