fix spelling mistake and wrap printf behind #ifdef DEBUG

This commit is contained in:
sspitzer%netscape.com 1999-05-08 17:47:00 +00:00
parent 82fffcc0c1
commit 8e0cc74dc3

View File

@ -171,7 +171,10 @@ NS_METHOD nsAppShell::Run()
return rv;
}
printf("Got thew event queue from the service\n");
#ifdef DEBUG
printf("Got the event queue from the service\n");
#endif /* DEBUG */
//Get the event queue for the thread.
rv = mEventQService->GetThreadEventQueue(PR_GetCurrentThread(), &EQueue);