VirtualBox

Ignore:
Timestamp:
Apr 24, 2019 4:29:00 PM (6 years ago)
Author:
vboxsync
Message:

winnt/vboxsf: Use 'vrc' for the vbox/iprt status code like we do in main and other places, rather than 'vboxRC'. bugref:9172

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/SharedFolders/driver/vbsfhlp.c

    r78279 r78280  
    104104 *
    105105 * @returns NT status code
    106  * @param   vboxRC          VBox error code
    107  *
    108  */
    109 NTSTATUS VBoxErrorToNTStatus(int vboxRC)
     106 * @param   vrc             VBox status code.
     107 *
     108 */
     109NTSTATUS VBoxErrorToNTStatus(int vrc)
    110110{
    111111    NTSTATUS Status;
    112112
    113     switch (vboxRC)
     113    switch (vrc)
    114114    {
    115115        case VINF_SUCCESS:
     
    192192            Status = STATUS_INVALID_PARAMETER;
    193193            Log(("Unexpected vbox error %Rrc\n",
    194                  vboxRC));
     194                 vrc));
    195195            break;
    196196    }
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