VirtualBox

Changeset 21616 in vbox for trunk/src/VBox/Runtime/r3/posix


Ignore:
Timestamp:
Jul 15, 2009 3:27:07 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
50137
Message:

nitpicking.

File:
1 edited

Legend:

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

    r21582 r21616  
    171171            break;
    172172        case RTFILE_O_WRITE:
    173             fOpenMode |= (fOpen & RTFILE_O_APPEND)? O_APPEND | O_WRONLY: O_WRONLY;
     173            fOpenMode |= fOpen & RTFILE_O_APPEND ? O_APPEND | O_WRONLY : O_WRONLY;
    174174            break;
    175175        case RTFILE_O_READWRITE:
    176             fOpenMode |= (fOpen & RTFILE_O_APPEND)? O_APPEND | O_RDWR: O_RDWR;
     176            fOpenMode |= fOpen & RTFILE_O_APPEND ? O_APPEND | O_RDWR   : O_RDWR;
    177177            break;
    178178        default:
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