includes/std: Make std::mem::read_string take in a larger size

This commit is contained in:
Nik
2024-01-31 08:22:25 +01:00
committed by GitHub
parent f75ba4b6ee
commit e6589ecba1

View File

@@ -128,7 +128,7 @@ namespace std::mem {
@param size The size of the value to read
@return The value read
*/
fn read_string(u128 address, u8 size) {
fn read_string(u128 address, u128 size) {
return builtin::std::mem::read_string(address, size);
};