Skip to content

Commit

Permalink
Fixed declaration for RishkaSyscall::Runtime::getForkString()
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed May 14, 2024
1 parent 3d3b39a commit 2116eef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rishka_syscalls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ void RishkaSyscall::Runtime::yield() {
yield();
}

uint32_t RishkaSyscall::Runtime::get_fork_string(RishkaVM* vm) {
uint32_t RishkaSyscall::Runtime::getForkString(RishkaVM* vm) {
String stream = vm->getOutputStream();
char* data = (char*) stream.c_str();

Expand Down
2 changes: 1 addition & 1 deletion src/rishka_syscalls.h
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ class RishkaSyscall final {
public:
static char strpass();
static void yield();
static uint32_t get_fork_string();
static uint32_t getForkString(RishkaVM* vm);
};
};

Expand Down

0 comments on commit 2116eef

Please sign in to comment.