From 0a5ed743b87033119bf5b4555bf6b5824094fd1b Mon Sep 17 00:00:00 2001 From: "benjamin.drung@gmail.com" Date: Thu, 29 May 2014 15:38:54 +0000 Subject: [PATCH] Fix -Waddress compiler warning. --- src/export/ExportMP3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/export/ExportMP3.cpp b/src/export/ExportMP3.cpp index 03c4091b7..9afba695b 100644 --- a/src/export/ExportMP3.cpp +++ b/src/export/ExportMP3.cpp @@ -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()); } }