summaryrefslogtreecommitdiff
path: root/source3/rpcclient
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2012-06-18 14:35:02 -0700
committerJeremy Allison <jra@samba.org>2012-06-19 10:27:23 -0700
commitd1bcbd785fc0a2a5d07c27c962d666252fd234a2 (patch)
treebfbacf201f0ce8db425eca532daba63a38fdc2c9 /source3/rpcclient
parent6cef2a613c4706dab4fe797465e29fe32d81976f (diff)
downloadsamba-d1bcbd785fc0a2a5d07c27c962d666252fd234a2.tar.gz
samba-d1bcbd785fc0a2a5d07c27c962d666252fd234a2.tar.bz2
samba-d1bcbd785fc0a2a5d07c27c962d666252fd234a2.zip
Fix warnings using %lu to print a 64-bit value (should by %llu).
Diffstat (limited to 'source3/rpcclient')
-rw-r--r--source3/rpcclient/cmd_fss.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpcclient/cmd_fss.c b/source3/rpcclient/cmd_fss.c
index 56d9141da5..a9e4394a9c 100644
--- a/source3/rpcclient/cmd_fss.c
+++ b/source3/rpcclient/cmd_fss.c
@@ -312,7 +312,7 @@ static NTSTATUS cmd_fss_create_expose(struct rpc_pipe_client *cli,
nt_errstr(status), r_scset_prep.out.result));
goto err_out;
}
- printf("%s: prepare completed in %lu secs\n",
+ printf("%s: prepare completed in %llu secs\n",
GUID_string(tmp_ctx, r_scset_start.out.pShadowCopySetId),
(uint64_t)(time_mono(NULL) - start_time));
@@ -326,7 +326,7 @@ static NTSTATUS cmd_fss_create_expose(struct rpc_pipe_client *cli,
nt_errstr(status), r_scset_commit.out.result));
goto err_out;
}
- printf("%s: commit completed in %lu secs\n",
+ printf("%s: commit completed in %llu secs\n",
GUID_string(tmp_ctx, r_scset_start.out.pShadowCopySetId),
(uint64_t)(time_mono(NULL) - start_time));