1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 08:39:46 +02:00

Remove a use of c_str

This commit is contained in:
Paul Licameli 2018-10-01 19:24:48 -04:00
parent 81385d7ebd
commit 526179b63e

View File

@ -435,7 +435,7 @@ bool Track::LinkConsistencyCheck()
{
wxLogWarning(
wxT("Left track %s had linked right track %s with extra right track link.\n Removing extra link from right track."),
GetName().c_str(), l->GetName());
GetName(), l->GetName());
err = true;
l->SetLinked(false);
}