Skip to content

Commit

Permalink
Fixed small error on Rishka VM syscalls.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed May 18, 2024
1 parent 38ad000 commit 90d780c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rishka_syscalls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void RishkaSyscall::IO::printn(RishkaVM* vm) {
}

void RishkaSyscall::IO::printu(RishkaVM* vm) {
auto arg = vm->getParam<unt64_t>(0);
auto arg = vm->getParam<uint64_t>(0);

vm->getTerminal()->print(arg);
vm->appendToOutputStream(arg);
Expand Down

0 comments on commit 90d780c

Please sign in to comment.