From: Volker Lendecke Date: Sun, 24 May 2009 20:16:34 +0000 (+0200) Subject: Fix a size_t/int warning X-Git-Tag: tdb-1.1.5~393^2~18 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=a8ffc286a4fd3fffcc934462b9f6f5593f910661 Fix a size_t/int warning --- diff --git a/source3/modules/nfs4_acls.c b/source3/modules/nfs4_acls.c index 04ea73f45e6..0941eb94f5f 100644 --- a/source3/modules/nfs4_acls.c +++ b/source3/modules/nfs4_acls.c @@ -316,7 +316,7 @@ static NTSTATUS smb_get_nt_acl_nfs4_common(const SMB_STRUCT_STAT *sbuf, } DEBUG(10, ("smb_get_nt_acl_nfs4_common successfully exited with sd_size %d\n", - ndr_size_security_descriptor(*ppdesc, NULL, 0))); + (int)ndr_size_security_descriptor(*ppdesc, NULL, 0))); return NT_STATUS_OK; }