DBG: forgot newline for debug-only commands
This commit is contained in:
parent
0911f1fbd5
commit
26959881de
|
@ -293,7 +293,7 @@ void cmdloop()
|
||||||
|
|
||||||
if(found->debugonly && !DbgIsDebugging()) //stop processing on debug-only commands
|
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;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -337,7 +337,7 @@ bool cmddirectexec(const char* cmd)
|
||||||
|
|
||||||
if(found->debugonly && !DbgIsDebugging()) //stop processing on debug-only commands
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue