diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-01-20 03:17:55 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-01-20 03:17:55 +0100 |
commit | ebfb4fdf2937bd9fc939ac85fdfc416e7fa7776d (patch) | |
tree | 8c6360ab9638ce5df7f832cc1f260151bd509139 /sys/src/9/port/fault.c | |
parent | ad1eefb3556354b0fdf58faa3b4f5498d99a1f23 (diff) |
kernel: convert putmmu() to uintptr for va and pa
Diffstat (limited to 'sys/src/9/port/fault.c')
-rw-r--r-- | sys/src/9/port/fault.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/src/9/port/fault.c b/sys/src/9/port/fault.c index 828175202..55a739bc3 100644 --- a/sys/src/9/port/fault.c +++ b/sys/src/9/port/fault.c @@ -79,8 +79,7 @@ fixfault(Segment *s, uintptr addr, int read, int doputmmu) int type; int ref; Pte **p, *etp; - ulong mmuphys=0; - uintptr soff; + uintptr soff, mmuphys=0; Page **pg, *lkp, *new; Page *(*fn)(Segment*, uintptr); |