s3/vfs_tsmsm: fix debug output for large files
authorBjörn Jacke <bj@sernet.de>
Wed, 17 Nov 2010 16:45:01 +0000 (17:45 +0100)
committerBjoern Jacke <bj@sernet.de>
Thu, 18 Nov 2010 14:03:19 +0000 (14:03 +0000)
source3/modules/vfs_tsmsm.c

index 12f79ff71e86ae0029f68ea1dc4b2df893c72751..c11e896daa0420e9a838e4418f267aa12df855b2 100644 (file)
@@ -163,10 +163,10 @@ static bool tsmsm_is_offline(struct vfs_handle_struct *handle,
           then assume it is not offline (it may not be 100%, as it could be sparse) */
        if (512 * (off_t)stbuf->st_ex_blocks >=
            stbuf->st_ex_size * tsmd->online_ratio) {
-               DEBUG(10,("%s not offline: st_blocks=%ld st_size=%ld "
+               DEBUG(10,("%s not offline: st_blocks=%llu st_size=%llu "
                          "online_ratio=%.2f\n", path,
-                         (long)stbuf->st_ex_blocks,
-                         (long)stbuf->st_ex_size, tsmd->online_ratio));
+                         (unsigned long long)stbuf->st_ex_blocks,
+                         (unsigned long long)stbuf->st_ex_size, tsmd->online_ratio));
                return false;
        }
 
@@ -263,9 +263,9 @@ static bool tsmsm_aio_force(struct vfs_handle_struct *handle, struct files_struc
           if the file might be offline
        */
        if(SMB_VFS_FSTAT(fsp, &sbuf) == 0) {
-               DEBUG(10,("tsmsm_aio_force st_blocks=%ld st_size=%ld "
-                         "online_ratio=%.2f\n", (long)sbuf.st_ex_blocks,
-                         (long)sbuf.st_ex_size, tsmd->online_ratio));
+               DEBUG(10,("tsmsm_aio_force st_blocks=%llu st_size=%llu "
+                         "online_ratio=%.2f\n", (unsigned long long)sbuf.st_ex_blocks,
+                         (unsigned long long)sbuf.st_ex_size, tsmd->online_ratio));
                return !(512 * (off_t)sbuf.st_ex_blocks >=
                         sbuf.st_ex_size * tsmd->online_ratio);
        }