VirtualBox

Changeset 11790 for trunk/src

Show
Ignore:
Timestamp:
08/28/08 21:53:30 (3 months ago)
Author:
vboxsync
Message:

warnings

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 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) 

© 2008 Sun Microsystems, Inc.
ContactPrivacy policy