From: Jim Meyering Date: Fri, 10 Nov 2006 22:22:31 +0000 (+0000) Subject: * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s. X-Git-Tag: cvs-readonly~1583 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=e71c251fb890ed0fc83108a74c7819cd384e826e;p=gnulib.git * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s. --- diff --git a/ChangeLog b/ChangeLog index 3c21fc75d..73f9634d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-11-10 Jim Meyering + + * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s. + 2006-11-09 Paul Eggert * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]: diff --git a/lib/fts.c b/lib/fts.c index bc016d4d9..838a2acdc 100644 --- a/lib/fts.c +++ b/lib/fts.c @@ -707,7 +707,7 @@ check_for_dir: 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);