1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

Fix -Waddress compiler warning.

This commit is contained in:
benjamin.drung@gmail.com 2014-05-29 15:38:54 +00:00
parent 2e8222c573
commit 0a5ed743b8

View File

@ -1376,7 +1376,7 @@ void MP3Exporter::PutInfoTag(wxFFile & f, wxFileOffset off)
mGF = NULL;
}
#endif
else if (lame_mp3_tags_fid) {
else if (lame_mp3_tags_fid != NULL) {
lame_mp3_tags_fid(mGF, f.fp());
}
}