Revert "vfs_btrfs: fix compile on 32-bit platforms."
authorRusty Russell <rusty@rustcorp.com.au>
Sun, 24 Mar 2013 03:28:02 +0000 (13:58 +1030)
committerRusty Russell <rusty@rustcorp.com.au>
Sun, 24 Mar 2013 03:28:46 +0000 (13:58 +1030)
This reverts commit fd6d0361d6fef5f8175967ddbae4a2b1d79dfcad.

Unreviewed, and Andrew has a better fix.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
source3/modules/vfs_btrfs.c

index eed5456021f09b0f8a84662008ee54994e547f1a..660bc680634145e660548c85edad45c62b0ee66d 100644 (file)
@@ -117,9 +117,9 @@ static struct tevent_req *btrfs_copy_chunk_send(struct vfs_handle_struct *handle
                 */
                DEBUG(5, ("BTRFS_IOC_CLONE_RANGE failed: %s, length %lu, "
                          "src fd: %ld off: %lu, dest fd: %d off: %lu\n",
-                         strerror(errno), (long)cr_args.src_length,
-                         (long)cr_args.src_fd, (long)cr_args.src_offset,
-                         dest_fsp->fh->fd, (long)cr_args.dest_offset));
+                         strerror(errno), cr_args.src_length,
+                         cr_args.src_fd, cr_args.src_offset,
+                         dest_fsp->fh->fd, cr_args.dest_offset));
                cc_state->subreq = SMB_VFS_NEXT_COPY_CHUNK_SEND(handle,
                                                                cc_state, ev,
                                                                src_fsp,
@@ -177,8 +177,7 @@ static NTSTATUS btrfs_copy_chunk_recv(struct vfs_handle_struct *handle,
                return status;
        }
 
-       DEBUG(10, ("server side copy chunk copied %lu\n",
-                  (long)cc_state->copied));
+       DEBUG(10, ("server side copy chunk copied %lu\n", cc_state->copied));
        *copied = cc_state->copied;
        tevent_req_received(req);
        return NT_STATUS_OK;