From af7d73c7ab76ad81fed78b7f5c024daf1af87d9d Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Wed, 14 Jan 2009 01:56:15 +0000 Subject: Fix a few compiler warnings around implicit conversion or extra ";". svn path=/branches/BRANCH_6-3/; revision=5261 --- rfc822.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rfc822.c') diff --git a/rfc822.c b/rfc822.c index 38ff48b7..345ced02 100644 --- a/rfc822.c +++ b/rfc822.c @@ -79,7 +79,7 @@ char *reply_hack( for (cp = buf; *cp; cp++) if (*cp == ',' || isspace((unsigned char)*cp)) addresscount++; - buf = xrealloc(buf, strlen(buf) + addresscount * (strlen(host) + 1) + 1); + buf = (char *)xrealloc(buf, strlen(buf) + addresscount * (strlen(host) + 1) + 1); #endif /* MAIN */ /* -- cgit v1.2.3