VirtualBox

Changeset 26257 in vbox


Ignore:
Timestamp:
Feb 5, 2010 1:28:20 AM (15 years ago)
Author:
vboxsync
Message:

timer-posix.cpp: Another initializer warning.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/posix/timer-posix.cpp

    r14298 r26257  
    310310        do
    311311        {
    312             siginfo_t SigInfo = {0};
     312            siginfo_t SigInfo;
     313            RT_ZERO(SigInfo);
    313314#ifdef RT_OS_DARWIN
    314315            if (RT_LIKELY(sigwait(&SigSet, &SigInfo.si_signo) >= 0))
     
    370371    while (g_cTimerInstances)
    371372    {
    372         siginfo_t SigInfo = {0};
     373        siginfo_t SigInfo;
     374        RT_ZERO(SigInfo);
    373375        if (RT_LIKELY(sigwaitinfo(&SigSet, &SigInfo) >= 0))
    374376        {
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