Skip to content

Commit

Permalink
make sure it works with 1.78+ (#887)
Browse files Browse the repository at this point in the history
  • Loading branch information
taclane authored Dec 8, 2023
1 parent da711fe commit dfc4792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trunk-recorder/call_concluder/call_concluder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ void remove_call_files(Call_Data_t call_info) {
fs::path transmission_file = t.filename;
fs::copy_file(transmission_file, target_file);
#else
boost::filesystem::path target_file = boost::filesystem::path(call_info.filename ).replace_filename(boost::filesystem::path(t.filename).filename());
boost::filesystem::path target_file = boost::filesystem::path(fs::path(call_info.filename ).replace_filename(fs::path(t.filename).filename()));
boost::filesystem::path transmission_file = t.filename;
boost::filesystem::copy_file(transmission_file, target_file);
#endif
Expand Down

0 comments on commit dfc4792

Please sign in to comment.