Changes by: cha0smaster
Update of /cvsroot/linux-ntfs/ntfsprogs/include/ntfs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7165/include/ntfs
Modified Files:
attrib.h
Log Message:
Add change protype of ntfs_attr_pwrite: make @b const.
Index: attrib.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/include/ntfs/attrib.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -p -r1.17 -r1.18
--- attrib.h 19 Jun 2005 21:09:40 -0000 1.17
+++ attrib.h 2 Jul 2005 19:16:18 -0000 1.18
@@ -267,7 +267,7 @@ extern void ntfs_attr_close(ntfs_attr *n
extern s64 ntfs_attr_pread(ntfs_attr *na, const s64 pos, s64 count,
void *b);
extern s64 ntfs_attr_pwrite(ntfs_attr *na, const s64 pos, s64 count,
- void *b);
+ const void *b);
extern s64 ntfs_attr_mst_pread(ntfs_attr *na, const s64 pos,
const s64 bk_cnt, const u32 bk_size, void *dst);
|