diff options
author | Volker Lendecke <vl@samba.org> | 2009-05-24 22:16:34 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-05-27 11:54:14 +0200 |
commit | a8ffc286a4fd3fffcc934462b9f6f5593f910661 (patch) | |
tree | f83efa2158953f9f10ad95b12acd702d4999d32f | |
parent | d5e3d9478dcb2feed44287f67eeab39e49eed2ac (diff) | |
download | samba-a8ffc286a4fd3fffcc934462b9f6f5593f910661.tar.gz samba-a8ffc286a4fd3fffcc934462b9f6f5593f910661.tar.bz2 samba-a8ffc286a4fd3fffcc934462b9f6f5593f910661.zip |
Fix a size_t/int warning
-rw-r--r-- | source3/modules/nfs4_acls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/nfs4_acls.c b/source3/modules/nfs4_acls.c index 04ea73f45e..0941eb94f5 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; } |