summaryrefslogtreecommitdiff
path: root/src/scrounge.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/scrounge.c')
-rw-r--r--src/scrounge.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/scrounge.c b/src/scrounge.c
index 05f7fd7..cbbb875 100644
--- a/src/scrounge.c
+++ b/src/scrounge.c
@@ -634,6 +634,12 @@ void scroungeUsingRaw(partitioninfo* pi)
if(checkLocationLock(&locks, sec))
continue;
+#ifdef _WIN32
+ fprintf(stderr, "sector: %I64u\r", sec);
+#else
+ fprintf(stderr, "sector: %llu\r", (unsigned long long)sec);
+#endif
+
/* Read the record */
pos = SECTOR_TO_BYTES(sec);
if(lseek64(pi->device, pos, SEEK_SET) == -1)