aboutsummaryrefslogtreecommitdiffstats
path: root/libexfat/io.c
diff options
context:
space:
mode:
authorrelan <relan@users.noreply.github.com>2012-03-04 07:37:43 +0000
committerrelan <relan@users.noreply.github.com>2015-08-24 08:26:14 +0300
commit5d8383e4d53cd68860a0e1907692a67c1b9698e8 (patch)
tree90bcc930a24d92bd08a55a2596525d12c58a9c0c /libexfat/io.c
parente436f953f538dcbddccbc6966ba4ea7d1f4c34a1 (diff)
downloadandroid_external_exfat-5d8383e4d53cd68860a0e1907692a67c1b9698e8.tar.gz
android_external_exfat-5d8383e4d53cd68860a0e1907692a67c1b9698e8.tar.bz2
android_external_exfat-5d8383e4d53cd68860a0e1907692a67c1b9698e8.zip
Fix error message about device type.
Diffstat (limited to 'libexfat/io.c')
-rw-r--r--libexfat/io.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libexfat/io.c b/libexfat/io.c
index 8a6349c..c9c1e2b 100644
--- a/libexfat/io.c
+++ b/libexfat/io.c
@@ -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;
}