1
0
Fork 0

DBG: forgot newline for debug-only commands

This commit is contained in:
mrexodia 2016-10-29 18:43:38 +02:00
parent 0911f1fbd5
commit 26959881de
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 2 additions and 2 deletions

View File

@ -293,7 +293,7 @@ void cmdloop()
if(found->debugonly && !DbgIsDebugging()) //stop processing on debug-only commands
{
dprintf(QT_TRANSLATE_NOOP("DBG", "the command \"%s\" is debug-only"), command.c_str());
dprintf(QT_TRANSLATE_NOOP("DBG", "the command \"%s\" is debug-only\n"), command.c_str());
break;
}
@ -337,7 +337,7 @@ bool cmddirectexec(const char* cmd)
if(found->debugonly && !DbgIsDebugging()) //stop processing on debug-only commands
{
dprintf(QT_TRANSLATE_NOOP("DBG", "the command \"%s\" is debug-only"), command.c_str());
dprintf(QT_TRANSLATE_NOOP("DBG", "the command \"%s\" is debug-only\n"), command.c_str());
return false;
}