Skip to content

Commit d30f70b

Browse files
committed
NTFS: IndexData: Marked ExtendGranularity as internal
1 parent 08ca030 commit d30f70b

File tree

1 file changed

+2
-2
lines changed
  • DiskAccessLibrary/FileSystems/NTFS/AttributeData

1 file changed

+2
-2
lines changed

DiskAccessLibrary/FileSystems/NTFS/AttributeData/IndexData.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 2014-2018 Tal Aloni <[email protected]>. All rights reserved.
1+
/* Copyright (C) 2014-2019 Tal Aloni <[email protected]>. All rights reserved.
22
*
33
* You can redistribute this program and/or modify it under the terms of
44
* the GNU Lesser Public License as published by the Free Software Foundation,
@@ -13,7 +13,7 @@ namespace DiskAccessLibrary.FileSystems.NTFS
1313
{
1414
public partial class IndexData
1515
{
16-
private const int ExtendGranularity = 16; // Number of IndexRecord slots to allocate during each time we extend the data, we wish to avoid the data being too fragmented.
16+
internal const int ExtendGranularity = 16; // Number of IndexRecord slots to allocate during each time we extend the data, we wish to avoid the data being too fragmented.
1717

1818
private NTFSVolume m_volume;
1919
private FileRecord m_fileRecord;

0 commit comments

Comments
 (0)