X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fvsnprintf.c;h=ff5a80792989bbc5f2d65b23d70d3b721471f09f;hb=1062e7a84e38a0e708fa3a7de81bba8ad45a2d45;hp=043999d351c1cfdfa1c814f696d005ecf8137811;hpb=dac3bbf96357f7866a1094c228b4e5bea3fcf853;p=gnulib.git diff --git a/lib/vsnprintf.c b/lib/vsnprintf.c index 043999d35..ff5a80792 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); }