summaryrefslogtreecommitdiff
path: root/source3/torture
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2019-03-21 11:55:26 +0100
committerJeremy Allison <jra@samba.org>2019-03-21 20:38:33 +0000
commite1ba84a5f2217a0391d1ca0678e4b36c3e17b9f3 (patch)
tree9b24c2c80f32c63660cdf5899bfbf7dea5883a33 /source3/torture
parent9b1d79a5dd5e7caf967cf49936d2eb52175e85cf (diff)
downloadsamba-e1ba84a5f2217a0391d1ca0678e4b36c3e17b9f3.tar.gz
s3:torture: Improve the debug message output
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/torture')
-rw-r--r--source3/torture/test_cleanup.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/torture/test_cleanup.c b/source3/torture/test_cleanup.c
index d3186db75d2..4ee52d4c017 100644
--- a/source3/torture/test_cleanup.c
+++ b/source3/torture/test_cleanup.c
@@ -298,8 +298,10 @@ bool run_cleanup3(int dummy)
return false;
}
- printf("%d %d %d\n", (int)id.devid, (int)id.inode,
- (int)id.extid);
+ printf("devid: %lu inode: %lu extid: %lu\n",
+ (unsigned long)id.devid,
+ (unsigned long)id.inode,
+ (unsigned long)id.extid);
lck = get_existing_share_mode_lock(talloc_tos(), id);
if (lck == NULL) {