Fix compiler warning message.
authorJeremy Allison <jra@samba.org>
Mon, 23 Jul 2012 20:34:28 +0000 (13:34 -0700)
committerJeremy Allison <jra@samba.org>
Mon, 23 Jul 2012 22:09:46 +0000 (00:09 +0200)
source3/rpcclient/cmd_fss.c

index a9e4394a9c4fedd5c41078475adc6241bf505d95..af194e2f8742add684a82473ddefa0a9d5692fed 100644 (file)
@@ -314,7 +314,7 @@ static NTSTATUS cmd_fss_create_expose(struct rpc_pipe_client *cli,
        }
        printf("%s: prepare completed in %llu secs\n",
               GUID_string(tmp_ctx, r_scset_start.out.pShadowCopySetId),
-              (uint64_t)(time_mono(NULL) - start_time));
+              (long long unsigned int)(time_mono(NULL) - start_time));
 
        start_time = time_mono(NULL);
        ZERO_STRUCT(r_scset_commit);
@@ -328,7 +328,7 @@ static NTSTATUS cmd_fss_create_expose(struct rpc_pipe_client *cli,
        }
        printf("%s: commit completed in %llu secs\n",
               GUID_string(tmp_ctx, r_scset_start.out.pShadowCopySetId),
-              (uint64_t)(time_mono(NULL) - start_time));
+              (long long unsigned int)(time_mono(NULL) - start_time));
 
        ZERO_STRUCT(r_scset_expose);
        r_scset_expose.in.ShadowCopySetId = *r_scset_start.out.pShadowCopySetId;