summaryrefslogtreecommitdiff
path: root/sys/src/9/port/portdat.h
diff options
context:
space:
mode:
authorglenda <glenda@9front.local>2022-08-09 17:47:39 +0000
committerglenda <glenda@9front.local>2022-08-09 17:47:39 +0000
commitdb27bd5be753519505973cc0226e3a49ef5aa23e (patch)
tree2c1fc6cc3830f65424282c7a58f57c99f391acef /sys/src/9/port/portdat.h
parent7e0cdf428a5c2a349293d973b0d07a1affa31e27 (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.h2
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;