X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fargz.c;h=66e8580f252392bfe5f51b09e578bfdc01bd8732;hb=bbfcd2f1a92c9bdbb8d7d7d0a8a8c6665c316747;hp=974dfa994f362e8b075057f845b4c23c3e773129;hpb=3030c5b5e0a5199e16b05927da72c43c42f211c3;p=gnulib.git diff --git a/lib/argz.c b/lib/argz.c index 974dfa994..66e8580f2 100644 --- a/lib/argz.c +++ b/lib/argz.c @@ -1,5 +1,5 @@ /* Functions for dealing with '\0' separated arg vectors. - Copyright (C) 1995-1998, 2000-2002, 2006, 2008-2009 Free Software + Copyright (C) 1995-1998, 2000-2002, 2006, 2008-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -14,8 +14,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + with this program; if not, see . */ #include @@ -220,7 +219,7 @@ argz_count (const char *argz, size_t len) size_t count = 0; while (len > 0) { - size_t part_len = strlen(argz); + size_t part_len = strlen (argz); argz += part_len + 1; len -= part_len + 1; count++;