$OpenBSD: patch-src_import_ImportFLAC_cpp,v 1.3 2018/04/11 17:59:54 jasper Exp $

Index: src/import/ImportFLAC.cpp
--- src/import/ImportFLAC.cpp.orig
+++ src/import/ImportFLAC.cpp
@@ -289,7 +289,7 @@ ImportFileHandle *FLACImportPlugin::Open(wxString file
    int cnt;
    wxFile binaryFile;
    if (!binaryFile.Open(filename)) {
-      return false; // File not found
+      return NULL; // File not found
    }
 
 #ifdef USE_LIBID3TAG
@@ -306,7 +306,7 @@ ImportFileHandle *FLACImportPlugin::Open(wxString file
 
    if (cnt == wxInvalidOffset || strncmp(buf, FLAC_HEADER, 4) != 0) {
       // File is not a FLAC file
-      return false; 
+      return NULL; 
    }
    
    // Open the file for import
