diff --git a/Stream_support/include/CGAL/IO/trace.h b/Stream_support/include/CGAL/IO/trace.h index 6a3f9f7096e..d300ceada87 100644 --- a/Stream_support/include/CGAL/IO/trace.h +++ b/Stream_support/include/CGAL/IO/trace.h @@ -26,7 +26,7 @@ inline void CGAL_print_stderr(const char *fmt, ...) { va_list argp; va_start(argp, fmt); - vfprintf(stderr, fmt, argp); + vfprintf_s(stderr, fmt, argp); va_end(argp); }