Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-08-22 02:13:21 +0400
committerJunio C Hamano <gitster@pobox.com>2009-08-22 05:48:01 +0400
commitd1094fdd1b8c97b957591ef2902587c654f4e18c (patch)
treecf9f8440dc53f4a25fad93437736ce45f3857c31 /compat
parentf00ecbe42b82f3c8e6a170074f2299487026e400 (diff)
compat/snprintf.c: clarify SNPRINTF_SIZE_CORR
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat')
-rw-r--r--compat/snprintf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/compat/snprintf.c b/compat/snprintf.c
index 6c0fb056a5..4d07087abd 100644
--- a/compat/snprintf.c
+++ b/compat/snprintf.c
@@ -3,7 +3,8 @@
/*
* The size parameter specifies the available space, i.e. includes
* the trailing NUL byte; but Windows's vsnprintf expects the
- * number of characters to write without the trailing NUL.
+ * number of characters to write, and does not necessarily write the
+ * trailing NUL.
*/
#ifndef SNPRINTF_SIZE_CORR
#if defined(__MINGW32__) && defined(__GNUC__) && __GNUC__ < 4