diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/Makefile.in | 4 | ||||
-rw-r--r-- | src/mkid.c | 2 |
3 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2006-07-06 Claudio Fontana <claudio@gnu.org> + + * src/Makefile.in: regenerated. + * src/mkid.c: remove useless (and wrong) const. + 2006-06-26 Claudio Fontana <claudio@gnu.org> * libidu/walker.c (walk_flink): add missing #ifdef HAVE_LINK before diff --git a/src/Makefile.in b/src/Makefile.in index 1c84beb..118234b 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.9.4 from Makefile.am. +# Makefile.in generated by automake 1.9.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004 Free Software Foundation, Inc. +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -372,7 +372,7 @@ assert_writeable (char const *filename) { if (errno == ENOENT) { - char const *dirname = dir_name ((char*)filename); + char *dirname = dir_name (filename); if (access (dirname, 06) < 0) error (1, errno, _("can't create `%s' in `%s'"), base_name (filename), dirname); |