Skip to content

Commit

Permalink
SUPERNOVA: Fix missing return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
bonki committed Apr 7, 2018
1 parent 4702681 commit 61e262b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/create_supernova/po_parser.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 61e262b

Please sign in to comment.