VirtualBox

Changeset 11790 in vbox


Ignore:
Timestamp:
Aug 28, 2008 7:53:30 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
35575
Message:

warnings

File:
1 edited

Legend:

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

    r8245 r11790  
    4848RTR3DECL(int) RTTlsAlloc(void)
    4949{
    50     pthread_key_t iTls = NIL_RTTLS;
     50    pthread_key_t iTls = (pthread_key_t)NIL_RTTLS;
    5151    int rc = pthread_key_create(&iTls, NULL);
    5252    if (!rc)
     
    6161RTR3DECL(int) RTTlsAllocEx(PRTTLS piTls, PFNRTTLSDTOR pfnDestructor)
    6262{
    63     pthread_key_t iTls = NIL_RTTLS;
     63    pthread_key_t iTls = (pthread_key_t)NIL_RTTLS;
    6464    int rc = pthread_key_create(&iTls, pfnDestructor);
    6565    if (!rc)
Note: See TracChangeset for help on using the changeset viewer.

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