SUPERNOVA: Fix missing return statement
This commit is contained in:
parent
4702681be2
commit
61e262be89
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue