From 85021d6a459c957cc276a93c3515029244f52677 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Mon, 11 Aug 2008 11:20:38 +0200 Subject: [PATCH] fix build warning. Guenther --- source/libsmb/clikrb5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libsmb/clikrb5.c b/source/libsmb/clikrb5.c index 2052d5a1bcf..5bb33b11d75 100644 --- a/source/libsmb/clikrb5.c +++ b/source/libsmb/clikrb5.c @@ -1877,7 +1877,7 @@ static krb5_error_code ads_krb5_get_fwd_ticket( krb5_context context, (APPLICATION 22) so that we can pack it on the end of the structure. */ - pChksum = SMB_MALLOC(GSSAPI_CHECKSUM_SIZE + fwdData.length ); + pChksum = (char *)SMB_MALLOC(GSSAPI_CHECKSUM_SIZE + fwdData.length ); if (!pChksum) { retval = ENOMEM; goto out; -- 2.11.4.GIT