I've just checked in this change:

        * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.

Index: lib/fts.c
===================================================================
RCS file: /cvsroot/gnulib/gnulib/lib/fts.c,v
retrieving revision 1.25
diff -u -r1.25 fts.c
--- lib/fts.c   8 Nov 2006 13:49:24 -0000       1.25
+++ lib/fts.c   10 Nov 2006 22:21:31 -0000
@@ -707,7 +707,7 @@
                sp->fts_cur = p;
                if (p->fts_info == FTS_D)
                  {
-                   Dprintf (("  %s-entering: %s\n", sp, p->fts_path));
+                   Dprintf (("  entering: %s\n", p->fts_path));
                    if (! enter_dir (sp, p))
                      {
                        __set_errno (ENOMEM);


Reply via email to