Simply return message when not found.

This commit is contained in:
aybe
2019-11-07 02:55:43 +01:00
parent 831d7ca3fa
commit 0ee3f5ef5c
2 changed files with 3 additions and 3 deletions

View File

@@ -124,7 +124,7 @@ const char * MSG_Get(char const * msg) {
return (*tel).val.c_str();
}
}
return "Message not Found!\n";
return msg;
}