From: tbeu Date: Tue, 6 Oct 2015 19:53:40 +0000 (+0200) Subject: Remove now obsolete comment X-Git-Tag: 1.9.9-b1~798^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F49%2Fhead;p=thirdparty%2Fzlib-ng.git Remove now obsolete comment ... about snprintf() being not available in MSVC --- 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