Changes by: uvman
Update of /cvs/linux-ntfs/ntfsprogs/include/ntfs
In directory delta357:/tmp/cvs-serv10841/include/ntfs
Modified Files:
layout.h list.h support.h
Log Message:
Whitespace cleanup
Index: layout.h
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/include/ntfs/layout.h,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -p -r1.58 -r1.59
--- layout.h 20 Oct 2006 19:54:22 -0000 1.58
+++ layout.h 27 Oct 2006 12:24:29 -0000 1.59
@@ -244,7 +244,7 @@ typedef enum {
*
* These are the so far known MFT_RECORD_* flags (16-bit) which contain
* information about the mft record in which they are present.
- *
+ *
* MFT_RECORD_IS_4 exists on all $Extend sub-files.
* It seems that it marks it is a metadata file with MFT record >24, however,
* it is unknown if it is limited to metadata files only.
@@ -480,7 +480,7 @@ typedef struct {
* Each attribute type has a corresponding attribute name (Unicode string of
* maximum 64 character length) as described by the attribute definitions
* present in the data attribute of the $AttrDef system file.
- *
+ *
* On NTFS 3.0 volumes the names are just as the types are named in the below
* enum exchanging AT_ for the dollar sign ($). If that isn't a revealing
* choice of symbol... (-;
@@ -867,15 +867,15 @@ typedef enum {
* This is a copy of the MFT_RECORD_IS_DIRECTORY bit from the mft
* record, telling us whether this is a directory or not, i.e. whether
* it has an index root attribute named "$I30" or not.
- *
- * This flag is only present in the FILE_NAME attribute (in the
+ *
+ * This flag is only present in the FILE_NAME attribute (in the
* file_attributes field).
*/
FILE_ATTR_I30_INDEX_PRESENT = const_cpu_to_le32(0x10000000),
-
+
/**
* FILE_ATTR_VIEW_INDEX_PRESENT - Does have a non-directory index?
- *
+ *
* This is a copy of the MFT_RECORD_IS_VIEW_INDEX bit from the mft
* record, telling us whether this file has a view index present (eg.
* object id index, quota index, one of the security indexes and the
Index: list.h
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/include/ntfs/list.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- list.h 3 Nov 2005 19:20:14 -0000 1.4
+++ list.h 27 Oct 2006 12:24:30 -0000 1.5
@@ -24,7 +24,7 @@
/**
* struct list_head - Simple doubly linked list implementation.
- *
+ *
* Copied from Linux kernel 2.4.2-ac18 into Linux-NTFS (with minor
* modifications). - AIA
*
Index: support.h
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/include/ntfs/support.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -p -r1.11 -r1.12
--- support.h 3 Aug 2006 02:49:00 -0000 1.11
+++ support.h 27 Oct 2006 12:24:30 -0000 1.12
@@ -98,13 +98,13 @@
/**
* ntfs_calloc, ntfs_malloc
- *
+ *
* Return a pointer to the allocated memory or NULL if the request fails.
*/
static inline void *ntfs_calloc(size_t size)
{
void *p;
-
+
p = calloc(1, size);
if (!p)
ntfs_log_perror("Failed to calloc %lld bytes", (long long)size);
@@ -114,7 +114,7 @@ static inline void *ntfs_calloc(size_t s
static inline void *ntfs_malloc(size_t size)
{
void *p;
-
+
p = malloc(size);
if (!p)
ntfs_log_perror("Failed to malloc %lld bytes", (long long)size);
|