Skip to content

Commit

Permalink
Fix error message (parameters order)
Browse files Browse the repository at this point in the history
  • Loading branch information
kovzol committed Jan 28, 2025
1 parent 65b839e commit f4e5725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion books-wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ EXTERNC char* lookupVerse1(const char* book0, const char* info0, const char* ver
string book1 = string(book0);
string info1 = string(info0);
string verse1 = string(verse0);
string lv = "error: `lookup1 " + book1 + " " + info1 + " " + verse1 + "`";
string lv = "error: `lookup1 " + info1 + " " + book1 + " " + verse1 + "`";

// Mostly taken from cli:
vector<string> tokens;
Expand Down

0 comments on commit f4e5725

Please sign in to comment.