Changes by: yura
Update of /cvs/linux-ntfs/ntfsprogs/libntfs
In directory delta357.server4you.de:/tmp/cvs-serv30036/libntfs
Modified Files:
attrib.c dir.c
Log Message:
a bit of cleanups
Index: attrib.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/libntfs/attrib.c,v
retrieving revision 1.220
retrieving revision 1.221
diff -u -p -r1.220 -r1.221
--- attrib.c 3 Aug 2006 04:30:41 -0000 1.220
+++ attrib.c 14 Aug 2006 03:52:56 -0000 1.221
@@ -4991,7 +4991,7 @@ put_err_out:
* EOPNOTSUPP - The desired resize is not implemented yet.
*/
int ntfs_attr_truncate(ntfs_attr *na, const s64 newsize)
-{
+{
int ret;
if (!na || newsize < 0 ||
Index: dir.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/libntfs/dir.c,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -p -r1.63 -r1.64
--- dir.c 28 Jul 2006 23:15:35 -0000 1.63
+++ dir.c 14 Aug 2006 03:52:56 -0000 1.64
@@ -549,7 +549,8 @@ ntfs_inode *ntfs_pathname_to_inode(ntfs_
len = ntfs_mbstoucs(p, &unicode, MAX_PATH);
if (len < 0) {
- ntfs_log_debug("Couldn't convert name to Unicode: %s.\n", p);
+ ntfs_log_debug("Couldn't convert name to Unicode: "
+ "%s.\n", p);
err = EILSEQ;
goto close;
}
|