mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-13 08:05:52 +01:00
Fix -Waddress compiler warning.
This commit is contained in:
@@ -1376,7 +1376,7 @@ void MP3Exporter::PutInfoTag(wxFFile & f, wxFileOffset off)
|
|||||||
mGF = NULL;
|
mGF = NULL;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
else if (lame_mp3_tags_fid) {
|
else if (lame_mp3_tags_fid != NULL) {
|
||||||
lame_mp3_tags_fid(mGF, f.fp());
|
lame_mp3_tags_fid(mGF, f.fp());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user