mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fixed initial kernel stack being wrong size.
This commit is contained in:
parent
969c0e8048
commit
c7c0fc603a
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@
|
|||
using namespace Maxsi;
|
||||
|
||||
// Keep the stack size aligned with $CPU/base.s
|
||||
extern "C" { size_t stack[64*1024] = {0}; }
|
||||
extern "C" { size_t stack[64*1024 / sizeof(size_t)] = {0}; }
|
||||
|
||||
namespace Sortix {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue