diff options
| author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-05-06 18:59:56 +0200 |
|---|---|---|
| committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-05-06 18:59:56 +0200 |
| commit | 59e53f818da15f6755fdb26aa6859bc6d913fcd0 (patch) | |
| tree | 78e033399644cbcf99af3d0714e57b7c97329547 | |
| parent | ff7d68e41adaa89aa3f896954104befe7d4a130d (diff) | |
| download | plan9front-59e53f818da15f6755fdb26aa6859bc6d913fcd0.tar.xz | |
pc64: fix embrassing typo in mmuzap()
| -rw-r--r-- | sys/src/9/pc64/mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc64/mmu.c b/sys/src/9/pc64/mmu.c index db00fee37..af7b0eebb 100644 --- a/sys/src/9/pc64/mmu.c +++ b/sys/src/9/pc64/mmu.c @@ -347,7 +347,7 @@ mmuzap(void) if(w & 1) pte[x] = 0; x++; - x >>= 1; + w >>= 1; } while(w); m->mmumap[i] = 0; } |
