Skip to content

Commit

Permalink
Fixing org sampling vars printing
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos committed Aug 11, 2023
1 parent 2e2ef02 commit ab85414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ void print_orig_sampling_vars(const vector<uint32_t>& orig_sampling_vars, T* ptr
if (!orig_sampling_vars.empty()) {
cout << "c Original sampling vars: ";
for(auto v: orig_sampling_vars) {
cout << v << " ";
cout << v+1 << " ";
}
cout << endl;
cout << "c [appmc] Orig sampling vars size: " << orig_sampling_vars.size() << endl;
Expand Down

0 comments on commit ab85414

Please sign in to comment.