diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-06-20 00:32:54 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-06-20 00:32:54 +0200 |
commit | a40364218d3155403bcaccce01c8a70523c2e29c (patch) | |
tree | 6f995a72b54747ee5ab28b4352e88ddf245ee2e1 | |
parent | 4b4d68487c7fcc65f589be88390ce658d9d43a13 (diff) | |
download | plan9front-a40364218d3155403bcaccce01c8a70523c2e29c.tar.xz |
pc64: fix compiler warning in rebootjump() entry calculation
-rw-r--r-- | sys/src/9/pc64/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc64/main.c b/sys/src/9/pc64/main.c index dd9e2d8f2..479141637 100644 --- a/sys/src/9/pc64/main.c +++ b/sys/src/9/pc64/main.c @@ -398,7 +398,7 @@ reboot(void *entry, void *code, ulong size) /* shutdown devices */ chandevshutdown(); - rebootjump((uintptr)entry & ~0xF0000000UL, PADDR(code), size); + rebootjump((uintptr)entry & -0x10000000, PADDR(code), size); } /* |