From 6cf02d8e1664702a520e1f3ef6939e92efacfa01 Mon Sep 17 00:00:00 2001 From: Alex Romero Date: Fri, 12 Jan 2024 12:59:55 -0500 Subject: [PATCH] minor change in ntfs-read.py to make it more human-readable --- examples/ntfs-read.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ntfs-read.py b/examples/ntfs-read.py index 01bf5ee9f..2b3b6c0d2 100755 --- a/examples/ntfs-read.py +++ b/examples/ntfs-read.py @@ -1020,7 +1020,7 @@ def __init__(self, volume): cmd.Cmd.__init__(self) self.volumePath = volume self.volume = NTFS(volume) - self.rootINode = self.volume.getINode(5) + self.rootINode = self.volume.getINode(FILE_Root) self.prompt = '\\>' self.intro = 'Type help for list of commands' self.currentINode = self.rootINode