Skip to content

Commit

Permalink
Fix Journal execution
Browse files Browse the repository at this point in the history
Fixes #19
  • Loading branch information
queengooborg committed Mar 8, 2018
1 parent b9d5b95 commit 4fd06b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binding-mri/niko-binding.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ RB_METHOD(nikoStart)
// Run the binary
pid_t pid = fork();
if (pid == 0) {
execl(journal.c_str(), x_str, y_str, (char*)0);
execl(journal.c_str(), journal.c_str(), x_str, y_str, (char*)0);
exit(1);
}

Expand Down

0 comments on commit 4fd06b9

Please sign in to comment.