mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-21 16:31:39 +00:00
fix: InotifyEvent.name should be UncheckedArray[char] (#23413)
This commit is contained in:
@@ -20,7 +20,7 @@ type
|
||||
mask* {.importc: "mask".}: uint32 ## Watch mask.
|
||||
cookie* {.importc: "cookie".}: uint32 ## Cookie to synchronize two events.
|
||||
len* {.importc: "len".}: uint32 ## Length (including NULs) of name.
|
||||
name* {.importc: "name".}: char ## Name.
|
||||
name* {.importc: "name".}: UncheckedArray[char] ## Name.
|
||||
|
||||
# Supported events suitable for MASK parameter of INOTIFY_ADD_WATCH.
|
||||
const
|
||||
|
||||
Reference in New Issue
Block a user