diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2018-09-17 16:53:55 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-17 16:53:55 -0700 |
commit | e3d634eb218f48b7152b40d64b07ff2f0a58ca09 (patch) | |
tree | 4a62ba1d804931fa7d687663c606b7edf7f16ae5 /src/msg.fbs | |
parent | 82d0638139adb64ae634d3b304b1c44f7cb358ee (diff) |
Make mode always u32 and switch to has_mode for StatRes fbs (#761)
Diffstat (limited to 'src/msg.fbs')
-rw-r--r-- | src/msg.fbs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/msg.fbs b/src/msg.fbs index e80713236..37a48e2df 100644 --- a/src/msg.fbs +++ b/src/msg.fbs @@ -212,8 +212,8 @@ table StatRes { modified:ulong; accessed:ulong; created:ulong; - mode: int = -1; - // negative mode for invalid (Windows); default to invalid + mode: uint; + has_mode: bool; // false on windows } root_type Base; |