Changes by: flatcap
Update of /cvsroot/linux-ntfs/ntfsprogs/libntfs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9569/libntfs
Modified Files:
collate.c runlist.c
Log Message:
typos
Index: collate.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/libntfs/collate.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- collate.c 19 Jun 2005 21:09:40 -0000 1.5
+++ collate.c 20 Jun 2005 14:23:50 -0000 1.6
@@ -70,7 +70,8 @@ static int ntfs_collate_ntofs_ulong(ntfs
static int ntfs_collate_file_name(ntfs_volume *vol,
const void *data1, const int data1_len __attribute__((unused)),
- const void *data2, const int data2_len __attribute__((unused))){
+ const void *data2, const int data2_len __attribute__((unused)))
+{
int rc;
const FILE_NAME_ATTR *fn1, *fn2;
@@ -127,7 +128,8 @@ static ntfs_collate_func_t ntfs_do_colla
*/
int ntfs_collate(ntfs_volume *vol, COLLATION_RULES cr,
const void *data1, const int data1_len,
- const void *data2, const int data2_len) {
+ const void *data2, const int data2_len)
+{
int i;
ntfs_debug("Entering.");
Index: runlist.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/libntfs/runlist.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -p -r1.49 -r1.50
--- runlist.c 17 Feb 2005 17:03:50 -0000 1.49
+++ runlist.c 20 Jun 2005 14:23:50 -0000 1.50
@@ -1638,7 +1638,7 @@ int ntfs_rl_sparse(runlist *rl)
runlist *rlc;
if (!rl) {
- Dprintf("%s(): Ivalid argument passed.\n", __FUNCTION__);
+ Dprintf("%s(): Invalid argument passed.\n", __FUNCTION__);
errno = EINVAL;
return -1;
}
@@ -1646,7 +1646,7 @@ int ntfs_rl_sparse(runlist *rl)
for (rlc = rl; rlc->length; rlc++)
if (rlc->lcn < 0) {
if (rlc->lcn != LCN_HOLE) {
- Dprintf("%s(): Recevied unmapped runlist.\n",
+ Dprintf("%s(): Received unmapped runlist.\n",
__FUNCTION__);
errno = EINVAL;
return -1;
@@ -1669,7 +1669,7 @@ s64 ntfs_rl_get_compressed_size(ntfs_vol
s64 ret = 0;
if (!rl) {
- Dprintf("%s(): Ivalid argument passed.\n", __FUNCTION__);
+ Dprintf("%s(): Invalid argument passed.\n", __FUNCTION__);
errno = EINVAL;
return -1;
}
@@ -1677,7 +1677,7 @@ s64 ntfs_rl_get_compressed_size(ntfs_vol
for (rlc = rl; rlc->length; rlc++) {
if (rlc->lcn < 0) {
if (rlc->lcn != LCN_HOLE) {
- Dprintf("%s(): Recevied unmapped runlist.\n",
+ Dprintf("%s(): Received unmapped runlist.\n",
__FUNCTION__);
errno = EINVAL;
return -1;
|