Skip to content

Commit

Permalink
Compliance to Arduino build CI workflow pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Apr 11, 2024
1 parent ef71530 commit 44b1010
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 @@ -294,7 +294,7 @@ bool RishkaSyscall::Sys::changeDir(RishkaVM* vm) {
}

uint32_t RishkaSyscall::Sys::workingDirectory(RishkaVM* vm) {
char* data = vm->getWorkingDirectory().c_str();
char* data = (const char*) vm->getWorkingDirectory().c_str();
change_rt_strpass(data);

return strlen(data);
Expand Down

0 comments on commit 44b1010

Please sign in to comment.