Bug#27597 mysqld-debug broken

- "on" -> "restore" to avoid warning in MSVC when compiling with debug


mysys/my_init.c:
  Fix spelling error that cause MSVC to throw a warning
  when compiling with debug.
  Use "restore" instaed of "on" to turn runtime checks back on
This commit is contained in:
unknown 2007-10-02 20:44:37 +02:00
parent bc8d42f96d
commit 27eff217b4

View file

@ -286,7 +286,7 @@ int handle_rtc_failure(int err_type, const char *file, int line,
return 0; /* Error is handled */
}
#pragma runtime_checks("", on)
#pragma runtime_checks("", restore)
#endif