summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal <amlal@nekernel.org>2025-05-04 20:09:22 +0200
committerAmlal <amlal@nekernel.org>2025-05-04 20:09:22 +0200
commitb74ba2a95e280eb8d4e94e0ca3231f6b81113e56 (patch)
treedec0ea64e165ab7d523e3e1df36a800de74421f2
parent8c88a437a156c1ee695b2c733a1cfae24cc97bce (diff)
dev: fix HeFS latex file.
Signed-off-by: Amlal <amlal@nekernel.org>
-rw-r--r--docs/tex/hefs.tex4
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;