summaryrefslogtreecommitdiff
path: root/src/JSystem/JKernel
diff options
context:
space:
mode:
authorroeming <brother64youyou@gmail.com>2025-12-18 16:31:44 -0500
committerGitHub <noreply@github.com>2025-12-18 13:31:44 -0800
commit93067110f6bf969776a553ddbefe6a734504f7d6 (patch)
tree0d2d421527c4cb8516d994ec5978195b55fdc234 /src/JSystem/JKernel
parent7cae156176b03d79ef05f3fefae5b60844e0fdf7 (diff)
Use consistent s32/u32 (#2964)
* cleanup long usage * fix regression
Diffstat (limited to 'src/JSystem/JKernel')
-rw-r--r--src/JSystem/JKernel/JKRAssertHeap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/JSystem/JKernel/JKRAssertHeap.cpp b/src/JSystem/JKernel/JKRAssertHeap.cpp
index d38ff3b909..5a3d723340 100644
--- a/src/JSystem/JKernel/JKRAssertHeap.cpp
+++ b/src/JSystem/JKernel/JKRAssertHeap.cpp
@@ -2,7 +2,7 @@
#include "JSystem/JKernel/JKRAssertHeap.h"
-JKRAssertHeap::JKRAssertHeap(void* data, unsigned long size, JKRHeap* parent, bool errorFlag)
+JKRAssertHeap::JKRAssertHeap(void* data, u32 size, JKRHeap* parent, bool errorFlag)
: JKRHeap(data, size, parent, errorFlag) {}
JKRAssertHeap::~JKRAssertHeap() {