Skip to content
Snippets Groups Projects
Commit 20f5ab46 authored by Ann Priestman's avatar Ann Priestman
Browse files

More testing

parent 4ace0bcb
No related branches found
No related tags found
No related merge requests found
......@@ -353,6 +353,12 @@ TSK_RETVAL_ENUM
printf(" Alloc size: %d\n", fs_attr->nrd.allocsize);
printf(" Comp size: %d\n", fs_attr->nrd.compsize);
printf(" Init size: %d\n", fs_attr->nrd.initsize);
printf(" Runs:\n");
TSK_FS_ATTR_RUN * run = fs_attr->nrd.run;
while(run != fs_attr->nrd.run_end){
printf(" %d, length %d\n", run->addr, run->len);
run = run->next;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment