From 0d5cdeaeb82fff312942e095996e0be4617d427c Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Sun, 16 Nov 2025 23:42:03 -0600 Subject: [PATCH] scripts: dbgflags.py: Make SEEK_MODE non-internal This is still a hack to make the seek _enum_ appear somewhat readable in our dbg _flags_ script. But the previously internal SEEK_MODE was causing all seek flags to be hidden from -l/--list confusingly. --- scripts/dbgflags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dbgflags.py b/scripts/dbgflags.py index da169c9a..3470558d 100755 --- a/scripts/dbgflags.py +++ b/scripts/dbgflags.py @@ -57,7 +57,7 @@ o_UNGRAFT = 0x00800000 # i- File's leaf does not match disk o_UNFLUSH = 0x00400000 # i- File's cache does not match disk # File seek flags -seek_MODE = 0xffffffff # im Seek mode +SEEK_MODE = 0xffffffff # -m Seek mode SEEK_SET = 0 # -^ Seek relative to an absolute position SEEK_CUR = 1 # -^ Seek relative to the current file position SEEK_END = 2 # -^ Seek relative to the end of the file