diff options
author | glenda <glenda@9front.local> | 2022-08-09 17:47:39 +0000 |
---|---|---|
committer | glenda <glenda@9front.local> | 2022-08-09 17:47:39 +0000 |
commit | db27bd5be753519505973cc0226e3a49ef5aa23e (patch) | |
tree | 2c1fc6cc3830f65424282c7a58f57c99f391acef /sys/src/9/port/portdat.h | |
parent | 7e0cdf428a5c2a349293d973b0d07a1affa31e27 (diff) |
kernel: use 64 bits for mountids
We dont expose this anymore, wrapping
these would be bad. Just send more bits.
Diffstat (limited to 'sys/src/9/port/portdat.h')
-rw-r--r-- | sys/src/9/port/portdat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/port/portdat.h b/sys/src/9/port/portdat.h index e9bb02f1e..e2aa2aa07 100644 --- a/sys/src/9/port/portdat.h +++ b/sys/src/9/port/portdat.h @@ -247,7 +247,7 @@ struct Walkqid struct Mount { - ulong mountid; + uvlong mountid; int mflag; Mount* next; Mount* order; |