Skip to content

Commit

Permalink
[core] Fix build issues with ENFORCE_SRT_DEBUG_BONDING_STATES (#2948).
Browse files Browse the repository at this point in the history
  • Loading branch information
kageds committed Jun 12, 2024
1 parent 38a3a16 commit ebe2c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srtcore/group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2574,7 +2574,7 @@ class StabilityTracer
str_tnow.replace(str_tnow.find(':'), 1, 1, '_');
}
const std::string fname = "stability_trace_" + str_tnow + ".csv";
m_fout.open(fname, std::ofstream::out);
m_fout.open(fname.c_str(), std::ofstream::out);
if (!m_fout)
std::cerr << "IPE: Failed to open " << fname << "!!!\n";

Expand Down

0 comments on commit ebe2c71

Please sign in to comment.