From ed5a7c1657c87c27383a1ed6cc5a8408bb4d2399 Mon Sep 17 00:00:00 2001 From: tbeu Date: Tue, 6 Oct 2015 21:53:40 +0200 Subject: [PATCH] Remove now obsolete comment ... about snprintf() being not available in MSVC --- gzguts.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gzguts.h b/gzguts.h index 88996f3f..17d8732d 100644 --- a/gzguts.h +++ b/gzguts.h @@ -51,10 +51,9 @@ # endif #endif -/* unlike snprintf (which is required in C99, yet still not supported by - Microsoft more than a decade later!), _snprintf does not guarantee null - termination of the result -- however this is only used in gzlib.c where - the result is assured to fit in the space provided */ +/* unlike snprintf (which is required in C99), _snprintf does not guarantee + null termination of the result -- however this is only used in gzlib.c + where the result is assured to fit in the space provided */ #if defined(_MSC_VER) && _MSC_VER < 1900 # define snprintf _snprintf #endif -- 2.47.2