Skip to content

Commit

Permalink
missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
Snafkin547 committed Sep 18, 2024
1 parent c324068 commit 3f3c17e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/c_api/test_join_sail.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ int main(int argc, char** argv) {
for (size_t i = 0; i < js1_header_json.size(); i++) {
long long curr_header = encodeStrToInt(js1_header_json[i].as<std::string>());
js1_header_toSend.push_back(curr_header);
js1_header.push_back(js1_header_json[i].as<std::string>())
js1_header.push_back(js1_header_json[i].as<std::string>());
}

// Organize body
Expand Down

0 comments on commit 3f3c17e

Please sign in to comment.