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.
This commit is contained in:
Christopher Haster
2025-11-16 23:42:03 -06:00
parent 192206b66d
commit 0d5cdeaeb8

View File

@ -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