From f9b174f78b0ba6ff8eab9e77a2b120a1b6a2584b Mon Sep 17 00:00:00 2001 From: vit9696 Date: Sun, 3 Nov 2019 17:25:07 +0300 Subject: [PATCH] Fix C++03 compatibility --- UEFIPatch/uefipatch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UEFIPatch/uefipatch.cpp b/UEFIPatch/uefipatch.cpp index 3f4c091..c51a44e 100644 --- a/UEFIPatch/uefipatch.cpp +++ b/UEFIPatch/uefipatch.cpp @@ -141,7 +141,7 @@ UINT8 UEFIPatch::patchFromArg(const QString & path, const QString & patch, const if (result) return result; - if (patch != nullptr && !patch.isEmpty()) { + if (patch != NULL && !patch.isEmpty()) { QByteArray line = patch.toUtf8(); QList list = line.split(' ');