VirtualBox

Changeset 22849 in vbox


Ignore:
Timestamp:
Sep 8, 2009 9:16:41 PM (15 years ago)
Author:
vboxsync
Message:

typos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/glue/EventQueue.cpp

    r22847 r22849  
    319319            Event* aEvent = NULL;
    320320         
    321             fHasEvent = waitForEvent(&aEvent);
     321            BOOL fHasEvent = waitForEvent(&aEvent);
    322322            if (fHasEvent)
    323323              handleEvent(aEvent);
     
    330330        MyThreadHandle aHandle;
    331331
    332         DWORD aCode = MsgWaitForMultipleObjects(1, &aHandle.mh,
    333                                              TRUE /*fWaitAll*/,
    334                                              0 /*ms*/,
    335                                              QS_ALLINPUT);
    336         if (aCode == WAIT_TIMEOUT)
     332        DWORD aCode2 = MsgWaitForMultipleObjects(1, &aHandle.mh,
     333                                                 TRUE /*fWaitAll*/,
     334                                                 0 /*ms*/,
     335                                                 QS_ALLINPUT);
     336        if (aCode2 == WAIT_TIMEOUT)
    337337            rc = VERR_TIMEOUT;
    338         else if (aCode == WAIT_OBJECT_0)
     338        else if (aCode2 == WAIT_OBJECT_0)
    339339            rc = VINF_SUCCESS;
    340340        else
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette