From 3c71cf2dbd2e11318d89b940cfbeba8b1f6ba749 Mon Sep 17 00:00:00 2001 From: relan Date: Sun, 20 Dec 2009 16:17:57 +0000 Subject: [PATCH] Fix format string. --- libexfat/node.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexfat/node.c b/libexfat/node.c index bed3aaa..de41057 100644 --- a/libexfat/node.c +++ b/libexfat/node.c @@ -57,7 +57,7 @@ static int opendir(struct exfat* ef, const struct exfat_node* dir, struct iterator* it) { if (!(dir->flags & EXFAT_ATTRIB_DIR)) - exfat_bug("`%s' is not a directory", dir->name); + exfat_bug("not a directory"); it->cluster = dir->start_cluster; it->offset = 0; it->contiguous = IS_CONTIGUOUS(*dir); -- 2.11.0