diff options
author | Christophe Grenier <grenier@cgsecurity.org> | 2009-03-11 22:57:47 +0100 |
---|---|---|
committer | Christophe Grenier <grenier@cgsecurity.org> | 2009-03-11 22:57:47 +0100 |
commit | f8e28538972bc080fce3d363c5ae4a6e955b0318 (patch) | |
tree | 74215bf4a9cb57f4da4ed443a9c4c8c06e066665 /src/fat_cluster.c | |
parent | 8d6beb9d6ec0287b2542928f84b98fbbbafc75c0 (diff) |
PhotoRec: log the correct sector numbers during FAT unformat in expert mode
Diffstat (limited to 'src/fat_cluster.c')
-rw-r--r-- | src/fat_cluster.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fat_cluster.c b/src/fat_cluster.c index 4e54bd9..2c71927 100644 --- a/src/fat_cluster.c +++ b/src/fat_cluster.c @@ -193,8 +193,8 @@ int find_sectors_per_cluster_aux(const sector_cluster_t *sector_cluster, const u free(cluster_offset); if(nbr_max==0) return 0; - log_info("Selected: sectors_per_cluster=%u offset=%lu nbr=%u\n", *sectors_per_cluster, - (long unsigned int)(*offset),nbr_max); + log_info("Selected: sectors_per_cluster=%u, cluster 2 at sector %lu, nbr=%u\n", + *sectors_per_cluster, (long unsigned int)(*offset), nbr_max); return 1; } } |