+2008-12-07 Jim Meyering <meyering@redhat.com>
+
+ unicodeio.c: mark unused parameters
+ * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
+ (fallback_failure_callback): Likewise.
+
2008-12-07 Bruno Haible <bruno@clisp.org>
* gnulib-tool (func_create_testdir): When building the tests
type mismatches.
2008-12-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
- Bruno Haible <bruno@clisp.org>
+ Bruno Haible <bruno@clisp.org>
* m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
2008-11-29 Jim Meyering <meyering@redhat.com>
+ unicodeio.c: mark unused parameters
+ * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
+ (fallback_failure_callback): Likewise.
+
fts: fix a thinko
* lib/fts.c (s_ifmt_shift_bits): Remove function. Not needed after all.
(set_stat_type): Return S_IF*-valued "type" directly.
/* Simple failure callback that displays an error and exits. */
static long
-exit_failure_callback (unsigned int code, const char *msg, void *callback_arg)
+exit_failure_callback (unsigned int code, const char *msg,
+ void *callback_arg _UNUSED_PARAMETER_)
{
if (msg == NULL)
error (1, 0, _("cannot convert U+%04X to local character set"), code);
/* Simple failure callback that displays a fallback representation in plain
ASCII, using the same notation as ISO C99 strings. */
static long
-fallback_failure_callback (unsigned int code, const char *msg, void *callback_arg)
+fallback_failure_callback (unsigned int code,
+ const char *msg _UNUSED_PARAMETER_,
+ void *callback_arg)
{
FILE *stream = (FILE *) callback_arg;