Changeset 95853 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Jul 26, 2022 11:40:02 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 152578
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceToolBox.cpp
r93115 r95853 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #include <stdio.h>23 24 22 #include <iprt/assert.h> 25 23 #include <iprt/buildconfig.h> … … 237 235 /* Set stdout's mode to binary. This is required for outputting all the machine-readable 238 236 * data correctly. */ 239 int rc = RTStrmSetMode(g_pStdOut, 1/* Binary mode */, -1 /* Current code set, not changed */);237 int rc = RTStrmSetMode(g_pStdOut, true /* Binary mode */, -1 /* Current code set, not changed */); 240 238 if (RT_FAILURE(rc)) 241 239 RTMsgError("Unable to set stdout to binary mode, rc=%Rrc\n", rc);
Note:
See TracChangeset
for help on using the changeset viewer.