Skip to content

Commit

Permalink
Formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 5, 2023
1 parent 5458471 commit bd3de6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hal/src/main/native/sim/HAL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,8 @@ HAL_Bool HAL_Initialize(int32_t timeout, int32_t mode) {
}
#endif // _WIN32

setvbuf(stdin, nullptr, _IOLBF, 0);
setvbuf(stdout, nullptr, _IOLBF, 0);
std::setvbuf(stdin, nullptr, _IOLBF, 0);
std::setvbuf(stdout, nullptr, _IOLBF, 0);

if (HAL_LoadExtensions() < 0) {
return false;
Expand Down

0 comments on commit bd3de6f

Please sign in to comment.