masqmail

changeset 368:b35c17fcf69d

Added cast to avoid compiler warning.
author markus schnalke <meillo@marmaro.de>
date Thu, 20 Oct 2011 10:22:40 +0200
parents b27f66555ba8
children 19d57eb1b6a1
files src/readsock.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line diff
     1.1 --- a/src/readsock.c	Thu Oct 20 10:20:59 2011 +0200
     1.2 +++ b/src/readsock.c	Thu Oct 20 10:22:40 2011 +0200
     1.3 @@ -151,7 +151,7 @@
     1.4  	}
     1.5  
     1.6  	if (!*pbuf)
     1.7 -		*pbuf = g_malloc(size);
     1.8 +		*pbuf = (char *) g_malloc(size);
     1.9  	buf = *pbuf;
    1.10  
    1.11  	while (1) {