OSDN Git Service

Fix format string.
authorrelan <relan@users.noreply.github.com>
Sun, 20 Dec 2009 16:17:57 +0000 (16:17 +0000)
committerrelan <relan@users.noreply.github.com>
Mon, 24 Aug 2015 05:26:11 +0000 (08:26 +0300)
libexfat/node.c

index bed3aaa..de41057 100644 (file)
@@ -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);