1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-17 09:07:41 +02:00

Fix incorrect type

This commit is contained in:
SteveDaulton 2020-01-08 15:42:33 +00:00
parent d22edcbc10
commit 8fc6f340b5

View File

@ -647,7 +647,7 @@ bool ProjectAudioManager::DoRecord(AudacityProject &project,
wxString nameSuffix = wxString(wxT(""));
if (useTrackNumber) {
nameSuffix += wxString::Format(wxT("%d"), 1 + numTracks + c);
nameSuffix += wxString::Format(wxT("%d"), 1 + (int) numTracks + c);
}
if (useDateStamp) {