From 7ac22126b3c5266529e2ffc782cac8fa826a950c Mon Sep 17 00:00:00 2001 From: zilmar Date: Wed, 3 Aug 2016 20:43:06 +1000 Subject: [PATCH] [Bridge] fix warning --- Source/Android/Bridge/NotificationClass.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Android/Bridge/NotificationClass.cpp b/Source/Android/Bridge/NotificationClass.cpp index 6a696a9ab..81671d95f 100644 --- a/Source/Android/Bridge/NotificationClass.cpp +++ b/Source/Android/Bridge/NotificationClass.cpp @@ -40,6 +40,8 @@ void CNotificationImp::DisplayError(const char * Message) const { #ifdef ANDROID g_JavaBridge->DisplayError(Message); +#else + Message = NULL; // not used #endif }