From 5d2c2b27a6323e2666378b986129b2a7c2c39e5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 6 Feb 2022 16:04:24 +0100 Subject: New upstream version 5.2.2GA --- app/tools/halibut/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/tools/halibut/malloc.c') diff --git a/app/tools/halibut/malloc.c b/app/tools/halibut/malloc.c index 2ff22fd..32f286a 100644 --- a/app/tools/halibut/malloc.c +++ b/app/tools/halibut/malloc.c @@ -92,7 +92,7 @@ void *(srealloc)(LOGPARAMS void *p, int size) { * of smalloc (and also reliably defined in all environments :-) */ char *dupstr(char *s) { - char *r = smalloc(1+strlen(s)); + char *r = smalloc(1+(int)strlen(s)); strcpy(r,s); return r; } -- cgit v1.2.3