summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2008-02-15 14:43:24 +0000
committerEric Blake <ebb9@byu.net>2008-02-15 14:43:24 +0000
commit142c983b65c51879e88163fba6dc69169dfa3c02 (patch)
tree21fed5347a8933cb89e963909112a42a30a71ecd
parent05fb4db810b894ceadf3d8a8318abb551db6c0a8 (diff)
downloadfindutils-142c983b65c51879e88163fba6dc69169dfa3c02.tar.gz
Avoid compiler warnings.
* find/pred.c (pred_name_common): Remove unused variable. * locate/locate.c (print_stats): Avoid undefined format string.
-rw-r--r--ChangeLog24
-rw-r--r--find/pred.c3
-rw-r--r--locate/locate.c4
3 files changed, 18 insertions, 13 deletions
diff --git a/ChangeLog b/ChangeLog
index abcd686a..cdae6bf2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-02-15 Eric Blake <ebb9@byu.net>
+
+ Avoid compiler warnings.
+ * find/pred.c (pred_name_common): Remove unused variable.
+ * locate/locate.c (print_stats): Avoid undefined format string.
+
2008-02-15 James Youngman <jay@gnu.org>
* README-CVS: Explain how to update the translations from the
@@ -11,7 +17,7 @@
* lib/Makefile.am (LDADD): Use @LIBINTL@ instead of @INTLLIBS@.
- * xargs/xargs.1: Fix a couple of typos.
+ * xargs/xargs.1: Fix a couple of typos.
2008-02-12 James Youngman <jay@gnu.org>
@@ -19,7 +25,7 @@
* po/de.po, po/ga.po, po/nl.po, po/pl.po, po/vi.po: Updated from
the Translation Project.
- Fix Savannah bug #22056, -Xtime tests are off by one second.
+ Fix Savannah bug #22056, -Xtime tests are off by one second.
* find/defs.h (struct options): Change cur_day_start from time_t
to strct timespec.
* find/util.c (set_option_defaults): Likewise.
@@ -56,7 +62,7 @@
* find/find.c (ngettext): Introduce a new macro to help with
internationalising plurals. Use it to allow better
- translations of format strings.
+ translations of format strings.
* locate/locate.c: Likewise.
2008-01-07 James Youngman <jay@gnu.org>
@@ -91,7 +97,7 @@
* find/fstype.c, find/ftsfind.c, find/parser.c, find/pred.c,
find/tree.c, lib/regextype.c, locate/locate.c, xargs/xargs.c,
- find.c: Backed out positional paremeter change, as the use of
+ find.c: Backed out positional paremeter change, as the use of
positional parameters was over-complex and unnecessary. We'll
re-apply the pluralisation support change soon, but without the
positional parameters.
@@ -106,22 +112,22 @@
* find/find.c (wd_sanity_check): Corrected typo in the format
string for an error message, which might cause a crash in
"oldfind" if a directory we moved into turned out to be a symbolic
- link that moved while we were trying to change directory.
+ link that moved while we were trying to change directory.
2007-12-20 James Youngman <jay@gnu.org>
* configure.ac: Advance the version number, as we are moving on
- from 4.3.12.
+ from 4.3.12.
* NEWS: Likewise
2007-12-19 James Youngman <jay@gnu.org>
- * find/find.c (ngettext): Introduce a new macro to help with
+ * find/find.c (ngettext): Introduce a new macro to help with
internationalising plurals. Use it with positional parameters in
order to allow better translations of format strings.
* find/fstype.c, find/ftsfind.c, find/parser.c, find/pred.c,
find/tree.c, lib/regextype.c, locate/locate.c, xargs/xargs.c: Likewise.
-
+
2007-12-19 Benno Schulenberg <coordinator@translationproject.org> (tiny change)
* find/find.1: Corrected two typos.
@@ -237,7 +243,7 @@
* .gitignore: Ignore gnulib-git, not gnulib-cvs
* .cvsignore: Ditto
* Makefile.am (findutils-check-smells): Change from gnulib-cvs to
- gnulib-git.
+ gnulib-git.
* README-CVS: Mention the extra dependency on git.
* NEWS: Mention this change.
diff --git a/find/pred.c b/find/pred.c
index d62a950f..75e6774a 100644
--- a/find/pred.c
+++ b/find/pred.c
@@ -1,6 +1,6 @@
/* pred.c -- execute the expression tree.
Copyright (C) 1990, 1991, 1992, 1993, 1994, 2000, 2003,
- 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+ 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -1185,7 +1185,6 @@ pred_ilname (const char *pathname, struct stat *stat_buf, struct predicate *pred
static boolean
pred_name_common (const char *pathname, const char *str, int flags)
{
- char *p;
boolean b;
/* We used to use last_component() here, but that would not allow us to modify the
* input string, which is const. We could optimise by duplicating the string only
diff --git a/locate/locate.c b/locate/locate.c
index 4079a0c4..0f624684 100644
--- a/locate/locate.c
+++ b/locate/locate.c
@@ -1,6 +1,6 @@
/* locate -- search databases for filenames that match patterns
Copyright (C) 1994, 1996, 1998, 1999, 2000, 2003,
- 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+ 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -909,7 +909,7 @@ print_stats(int argc, size_t database_file_size)
/* XXX: We would ideally use ngettext() here, but I don't know
* how to use it to handle more than one possibly-plural thing/
*/
- printf(_("File names have a cumulative length of %1$s bytes.\n"
+ printf(_("File names have a cumulative length of %s bytes.\n"
"Of those file names,\n"
"\n\t%s contain whitespace, "
"\n\t%s contain newline characters, "