Changes by: yura
Update of /cvs/linux-ntfs/ntfsprogs/libntfs
In directory delta357:/tmp/cvs-serv14868/libntfs
Modified Files:
attrib.c
Log Message:
cleanup
Index: attrib.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/libntfs/attrib.c,v
retrieving revision 1.236
retrieving revision 1.237
diff -u -p -r1.236 -r1.237
--- attrib.c 22 Nov 2006 18:28:13 -0000 1.236
+++ attrib.c 13 Mar 2007 18:45:51 -0000 1.237
@@ -953,9 +953,9 @@ s64 ntfs_attr_pwrite(ntfs_attr *na, cons
unsigned int update_mapping_pairs : 1;
} need_to = { 0, 0, 0 };
- ntfs_log_trace("Entering for inode 0x%llx, attr 0x%x, pos 0x%llx, count "
- "0x%llx.\n", na->ni->mft_no, na->type, (long long)pos,
- (long long)count);
+ ntfs_log_trace("Entering for inode 0x%llx, attr 0x%x, pos 0x%llx, "
+ "count 0x%llx.\n", na->ni->mft_no, na->type,
+ (long long)pos, (long long)count);
if (!na || !na->ni || !na->ni->vol || !b || pos < 0 || count < 0) {
errno = EINVAL;
return -1;
|