]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/argz.c (argz_create_sep): Fix typo.
authorOlly Betts <olly@survex.com>
Wed, 1 Jun 2005 19:10:31 +0000 (19:10 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Wed, 1 Jun 2005 19:10:31 +0000 (19:10 +0000)
ChangeLog
libltdl/argz.c

index e84a9e65b2a34007dbe51694b9f135f508e756bd..f744fe1d66dc58e470e4289d474667edf46dc316 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,8 @@
-2004-05-31  Peter O'Gorman  <peter@pogma.com>
+2005-06-01  Olly Betts <olly@survex.com>  (tiny change)
+
+       * libltdl/argz.c (argz_create_sep): Fix typo.
+
+2005-05-31  Peter O'Gorman  <peter@pogma.com>
 
        * config/ltmain.m4sh: Do not add installed static litool libraries
        to convenience, they are not convenience libraries.
index 29b22d9b039d73b0d2654fef5cb33c6ffe88664c..0f0268d473473c11a23d07b53bd8040613534024 100644 (file)
@@ -96,7 +96,7 @@ argz_create_sep (const char *str, int delim, char **pargz, size_t *pargz_len)
   assert (pargz);
   assert (pargz_len);
 
-  /* Make a copy of STR, but replacing each occurence of
+  /* Make a copy of STR, but replacing each occurrence of
      DELIM with '\0'.  */
   argz_len = 1+ strlen (str);
   if (argz_len)