summaryrefslogtreecommitdiff
path: root/source3/torture/test_cleanup.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/torture/test_cleanup.c')
-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) {