X-Git-Url: http://git.hcoop.net/bpt/guile.git/blobdiff_plain/c4b681fdacc57de0b2a9584c1f6a195cf2629b32..49114fd43de833c0724fbb0b6dc9ca639d1ab74f:/lib/vsnprintf.c diff --git a/lib/vsnprintf.c b/lib/vsnprintf.c index 1fdfb6bc8..9abb7a94d 100644 --- a/lib/vsnprintf.c +++ b/lib/vsnprintf.c @@ -1,5 +1,5 @@ /* Formatted output to strings. - Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc. + Copyright (C) 2004, 2006-2011 Free Software Foundation, Inc. Written by Simon Josefsson and Yoann Vandoorselaere . This program is free software; you can redistribute it and/or modify @@ -52,11 +52,11 @@ vsnprintf (char *str, size_t size, const char *format, va_list args) if (output != str) { if (size) - { - size_t pruned_len = (len < size ? len : size - 1); - memcpy (str, output, pruned_len); - str[pruned_len] = '\0'; - } + { + size_t pruned_len = (len < size ? len : size - 1); + memcpy (str, output, pruned_len); + str[pruned_len] = '\0'; + } free (output); }