Fix unintended code path when debug macros are turned off

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3474 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
haydentech 2003-06-11 14:29:46 +00:00
parent 93c891b0e6
commit 2e9a7f0c99

View File

@ -1383,8 +1383,10 @@ DBG(OUT("LOOPER: no target handler, use this\n"));
handler = resolve_specifier(handler, fLastMessage);
}
}
else
DBG(OUT("LOOPER: no scripting message\n"));
else
{
DBG(OUT("LOOPER: no scripting message\n"));
}
if (handler)
{