Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/include
In directory usw-pr-cvs1:/tmp/cvs-serv31580/include
Modified Files:
debug.h mft.h
Log Message:
Fix all compiler warnings that came up with -Wall. Enabled -Wall for ./configure --enable-debug everywhere. Fix a few bugs in mkntfs that came up in the warnings (just error code paths, nothing major).
Index: debug.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/debug.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -U2 -r1.2 -r1.3
--- debug.h 14 Apr 2002 13:56:45 -0000 1.2
+++ debug.h 15 Apr 2002 20:04:25 -0000 1.3
@@ -35,4 +35,5 @@
# include <stdarg.h>
#endif
+#include <errno.h>
/* Debug output to stderr. To get it run ./configure --enable-debug. */
Index: mft.h
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/include/mft.h,v
retrieving revision 1.28
retrieving revision 1.29
diff -U2 -r1.28 -r1.29
--- mft.h 15 Apr 2002 17:51:26 -0000 1.28
+++ mft.h 15 Apr 2002 20:04:25 -0000 1.29
@@ -100,4 +100,9 @@
}
+// FIXME: Temporary old stuff below here.
+
+extern int __read_file_record(const ntfs_volume *vol, const MFT_REF *mref,
+ MFT_RECORD **mrec, ATTR_RECORD **attr);
+
#endif /* defined MFT_H */
|