diff options
author | rmacklem <rmacklem@FreeBSD.org> | 2013-06-22 21:58:21 +0000 |
---|---|---|
committer | rmacklem <rmacklem@FreeBSD.org> | 2013-06-22 21:58:21 +0000 |
commit | 198db6adb9aa2818871303f999107eb12702e747 (patch) | |
tree | bade796519e88f80a432bd655d716f180581f7a3 /sys | |
parent | 0c17385f8d65828ea1606a76904f36f9fdb4c41c (diff) | |
download | FreeBSD-src-198db6adb9aa2818871303f999107eb12702e747.zip FreeBSD-src-198db6adb9aa2818871303f999107eb12702e747.tar.gz |
Fix r252074 so that it builds on 64bit arches.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/fs/nfsclient/nfs_clstate.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/fs/nfsclient/nfs_clstate.c b/sys/fs/nfsclient/nfs_clstate.c index 4ad885d..1a79799 100644 --- a/sys/fs/nfsclient/nfs_clstate.c +++ b/sys/fs/nfsclient/nfs_clstate.c @@ -5156,9 +5156,7 @@ nfscl_dolayoutcommit(struct nfsmount *nmp, struct nfscllayout *lyp, lyp->nfsly_fhlen, 0, flp->nfsfl_off, len, lyp->nfsly_lastbyte, &lyp->nfsly_stateid, NFSLAYOUT_NFSV4_1_FILES, 0, NULL, cred, p, NULL); - NFSCL_DEBUG(4, "layoutcommit err=%d off=%qd len=%qd " - "lastbyte=%qd\n", error, flp->nfsfl_off, len, - lyp->nfsly_lastbyte); + NFSCL_DEBUG(4, "layoutcommit err=%d\n", error); if (error == NFSERR_NOTSUPP) { /* If not supported, don't bother doing it. */ NFSLOCKMNT(nmp); |