From 2991c40d90f7f767b1e5143db1d61d35f4e4418f Mon Sep 17 00:00:00 2001 From: uvman Date: Sat, 28 Oct 2006 23:11:25 +0000 Subject: [PATCH] Remove double-commenting. Why use C++-style comments for multilines anyway? --- include/ntfs/layout.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/include/ntfs/layout.h b/include/ntfs/layout.h index 39e4c934..db1c79d4 100644 --- a/include/ntfs/layout.h +++ b/include/ntfs/layout.h @@ -2352,18 +2352,18 @@ typedef struct { the index. */ } __attribute__((__packed__)) key; /* The (optional) index data is inserted here when creating. */ - // VCN vcn; /* If INDEX_ENTRY_NODE bit in flags is set, the last - // eight bytes of this index entry contain the virtual - // cluster number of the index block that holds the - // entries immediately preceding the current entry (the - // vcn references the corresponding cluster in the data - // of the non-resident index allocation attribute). If - // the key_length is zero, then the vcn immediately - // follows the INDEX_ENTRY_HEADER. Regardless of - // key_length, the address of the 8-byte boundary - // aligned vcn of INDEX_ENTRY{_HEADER} *ie is given by - // (char*)ie + le16_to_cpu(ie->length) - sizeof(VCN), - // where sizeof(VCN) can be hardcoded as 8 if wanted. */ + /* VCN vcn; */ /* If INDEX_ENTRY_NODE bit in flags is set, the last + eight bytes of this index entry contain the virtual + cluster number of the index block that holds the + entries immediately preceding the current entry (the + vcn references the corresponding cluster in the data + of the non-resident index allocation attribute). If + the key_length is zero, then the vcn immediately + follows the INDEX_ENTRY_HEADER. Regardless of + key_length, the address of the 8-byte boundary + aligned vcn of INDEX_ENTRY{_HEADER} *ie is given by + (char*)ie + le16_to_cpu(ie->length) - sizeof(VCN), + where sizeof(VCN) can be hardcoded as 8 if wanted. */ } __attribute__((__packed__)) INDEX_ENTRY; /**