VirtualBox

Changeset 101160 in vbox for trunk/src


Ignore:
Timestamp:
Sep 18, 2023 6:20:50 PM (15 months ago)
Author:
vboxsync
Message:

trying to fix additions warning for r3/posix/dir-posix.cpp(111), comparison between signed and unsigned integer expressions

File:
1 edited

Legend:

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

    r98103 r101160  
    109109                {
    110110                    if (   stat(pszNativePath, &st)
    111                         || (st.st_mode & 07777) != (fMode & 07777) )
     111                        || (st.st_mode & 07777u) != (fMode & 07777u) )
    112112                        chmod(pszNativePath, fMode & RTFS_UNIX_MASK);
    113113                }
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