aboutsummaryrefslogtreecommitdiff
path: root/ports/windows/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/windows/init.c')
-rw-r--r--ports/windows/init.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ports/windows/init.c b/ports/windows/init.c
index 73ab71375..930400fde 100644
--- a/ports/windows/init.c
+++ b/ports/windows/init.c
@@ -41,7 +41,7 @@ void invalid_param_handler(const wchar_t *expr, const wchar_t *fun, const wchar_
#endif
void init() {
-#ifdef _MSC_VER
+ #ifdef _MSC_VER
// Disable the 'Debug Error!' dialog for assertions failures and the likes,
// instead write messages to the debugger output and terminate.
_CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_DEBUG);
@@ -52,16 +52,16 @@ void init() {
// passing invalid file descriptors to functions like lseek() and make the
// functions called behave properly by setting errno to EBADF/EINVAL/..
_set_invalid_parameter_handler(invalid_param_handler);
-#endif
+ #endif
SetConsoleCtrlHandler(console_sighandler, TRUE);
init_sleep();
-#ifdef __MINGW32__
+ #ifdef __MINGW32__
putenv("PRINTF_EXPONENT_DIGITS=2");
-#elif _MSC_VER < 1900
+ #elif _MSC_VER < 1900
// This is only necessary for Visual Studio versions 2013 and below:
// https://msdn.microsoft.com/en-us/library/bb531344(v=vs.140).aspx
_set_output_format(_TWO_DIGIT_EXPONENT);
-#endif
+ #endif
set_fmode_binary();
}