fix: Syntax errors

This commit is contained in:
WerWolv
2022-08-16 00:39:56 +02:00
parent 0ed7341f71
commit 0e2c1f1355
2 changed files with 2 additions and 2 deletions

View File

@@ -105,7 +105,7 @@ namespace hex::fs {
return u8"";
auto cString = reinterpret_cast<const char8_t *>(bytes.data());
return { cString, hex::strnlen(reinterpret_cast<const char*>(bytes.data()), bytes.size())) };
return { cString, hex::strnlen(reinterpret_cast<const char*>(bytes.data()), bytes.size()) };
}
void File::write(const u8 *buffer, size_t size) {