diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-09-15 16:37:13 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-09-15 16:37:13 +0200 |
| commit | d7ede77b3e13bc985e1b320249948434040c73a8 (patch) | |
| tree | 51bcf9ca9fc0ef4fefa65c5ae57c1f91c176e36c /dev/kernel/src/UtfUtils.cc | |
| parent | ecff424e9c78418f6d2bd79b7d4f50f42c29860e (diff) | |
feat: kernel: type fixes.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/src/UtfUtils.cc')
| -rw-r--r-- | dev/kernel/src/UtfUtils.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/kernel/src/UtfUtils.cc b/dev/kernel/src/UtfUtils.cc index 907632ad..e98b8306 100644 --- a/dev/kernel/src/UtfUtils.cc +++ b/dev/kernel/src/UtfUtils.cc @@ -37,7 +37,7 @@ Int32 urt_string_cmp(const Utf8Char* src, const Utf8Char* cmp, Size size) { return counter; } -Int urt_copy_memory(const VoidPtr src, VoidPtr dst, Size len) { +Int32 urt_copy_memory(const VoidPtr src, VoidPtr dst, Size len) { Utf8Char* srcChr = reinterpret_cast<Utf8Char*>(src); Utf8Char* dstChar = reinterpret_cast<Utf8Char*>(dst); |
