From bd8689f6744b45d02667cc4e1459d55291676317 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Fri, 22 Feb 2008 08:06:32 +0000 Subject: [PATCH] Fixed compiler warning SVN revision: 2055 --- src/elog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/elog.c b/src/elog.c index bf0ef040..cc5727a9 100755 --- a/src/elog.c +++ b/src/elog.c @@ -212,7 +212,7 @@ Encode the given string in-place by adding %XX escapes } } *pd = '\0'; - strlcpy(ps, str, size); + strlcpy(ps, (char *)str, size); } /*------------------------------------------------------------------*/