ref: a40364218d3155403bcaccce01c8a70523c2e29c
parent: 4b4d68487c7fcc65f589be88390ce658d9d43a13
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Wed Jun 19 20:32:54 EDT 2019
pc64: fix compiler warning in rebootjump() entry calculation
--- a/sys/src/9/pc64/main.c
+++ b/sys/src/9/pc64/main.c
@@ -398,7 +398,7 @@
/* shutdown devices */
chandevshutdown();
- rebootjump((uintptr)entry & ~0xF0000000UL, PADDR(code), size);
+ rebootjump((uintptr)entry & -0x10000000, PADDR(code), size);
}
/*