From: Michael Adam Date: Thu, 28 Feb 2008 10:31:20 +0000 (+0100) Subject: Remove a useless variable. X-Git-Tag: samba-3.2.0pre2~37^2~69 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=661b9f3d779b419e72968dd3b42348f9da68d803;p=thirdparty%2Fsamba.git Remove a useless variable. Michael --- diff --git a/source/torture/cmd_vfs.c b/source/torture/cmd_vfs.c index 82a28bd868a..9359b585995 100644 --- a/source/torture/cmd_vfs.c +++ b/source/torture/cmd_vfs.c @@ -842,7 +842,6 @@ static NTSTATUS cmd_ftruncate(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int ar static NTSTATUS cmd_lock(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, const char **argv) { - bool ret; int fd; int op; long offset; @@ -914,7 +913,7 @@ static NTSTATUS cmd_lock(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, c printf("lock: debug lock(fd=%d, op=%d, offset=%ld, count=%ld, type=%d))\n", fd, op, offset, count, type); - if ((ret = SMB_VFS_LOCK(vfs->files[fd], op, offset, count, type)) == False) { + if (SMB_VFS_LOCK(vfs->files[fd], op, offset, count, type) == False) { printf("lock: error=%d (%s)\n", errno, strerror(errno)); return NT_STATUS_UNSUCCESSFUL; }