OSDN Git Service

Corrected error message about device type.
authorresver <resver@60bc1c72-a15a-11de-b98f-4500b42dc123>
Sun, 4 Mar 2012 07:37:43 +0000 (07:37 +0000)
committerresver <resver@60bc1c72-a15a-11de-b98f-4500b42dc123>
Sun, 4 Mar 2012 07:37:43 +0000 (07:37 +0000)
git-svn-id: http://exfat.googlecode.com/svn/trunk@272 60bc1c72-a15a-11de-b98f-4500b42dc123

libexfat/io.c

index 8a6349c..c9c1e2b 100644 (file)
@@ -81,8 +81,7 @@ struct exfat_dev* exfat_open(const char* spec, int ro)
        {
                close(dev->fd);
                free(dev);
-               exfat_error("`%s' is neither a block device, nor a regular file",
-                               spec);
+               exfat_error("`%s' is neither a device, nor a regular file", spec);
                return NULL;
        }