From b23b0b0d63ce0a130ef9c2fd753201ee828d5014 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 20 Sep 2021 11:06:10 +0100 Subject: [PATCH] vfprintf -> vprintf_s --- Stream_support/include/CGAL/IO/trace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }