Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/ntfstools
In directory usw-pr-cvs1:/tmp/cvs-serv21016
Modified Files:
ntfsfix.c
Log Message:
Fix
Index: ntfsfix.c
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/ntfstools/ntfsfix.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -U2 -r1.13 -r1.14
--- ntfsfix.c 2001/04/11 15:29:39 1.13
+++ ntfsfix.c 2001/04/11 15:47:36 1.14
@@ -134,5 +134,5 @@
printf("Going to read $Mft... ");
*(__u64*)&mref = FILE_$Mft;
- br = get_mft_records(vol, b1, &mref, 4);
+ br = get_mft_records(vol, (MFT_RECORD*)b1, &mref, 4);
if (br != 4) {
puts(FAILED);
|