diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/tex/hefs.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tex/hefs.tex b/docs/tex/hefs.tex index 5a9c5abf..5aa9c59b 100644 --- a/docs/tex/hefs.tex +++ b/docs/tex/hefs.tex @@ -87,7 +87,7 @@ The `HEFS\_INDEX\_NODE` represents a file and is constrained to 512 bytes to mat \begin{lstlisting}[style=cstyle, caption={HEFS\_INDEX\_NODE (Fits 512B)}] struct HEFS_INDEX_NODE { - UInt64fHashPath; // Local file name + UInt64 fHashPath; // Local file name, hashed. UInt32 fFlags; UInt16 fKind; UInt32 fSize; @@ -108,7 +108,7 @@ Directories form a red-black tree. Each node (IND) can hold up to 16 index node \begin{lstlisting}[style=cstyle, caption={HEFS\_INDEX\_NODE\_DIRECTORY}] struct HEFS_INDEX_NODE_DIRECTORY { - UInt64 fHashPath; // Directory name as hash + UInt64 fHashPath; // Directory path as hash UInt32 fFlags; UInt16 fKind; UInt32 fEntryCount; |
