diff options
Diffstat (limited to 'devtools/create_supernova')
-rw-r--r-- | devtools/create_supernova/po_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/create_supernova/po_parser.cpp b/devtools/create_supernova/po_parser.cpp index f4a9b96388..05a8ac14a7 100644 --- a/devtools/create_supernova/po_parser.cpp +++ b/devtools/create_supernova/po_parser.cpp @@ -69,7 +69,7 @@ void PoMessageList::insert(const char *translation, const char *msg, const char const char *PoMessageList::findTranslation(const char *msg, const char *context) { if (msg == NULL || *msg == '\0') - NULL; + return NULL; // binary-search for the message int leftIndex = 0; |