aboutsummaryrefslogtreecommitdiffstats
path: root/dump
diff options
context:
space:
mode:
authorrelan <relan@users.noreply.github.com>2014-06-01 19:53:48 +0000
committerrelan <relan@users.noreply.github.com>2015-08-24 08:26:16 +0300
commiteca4ae8fb316ad5ef7f190917bcac4accffc3301 (patch)
tree9e2833e10f37469bcb1d719d07c133c77ffd49c3 /dump
parent174be33f21390c2b002921f3968772c054c2a543 (diff)
downloadandroid_external_exfat-eca4ae8fb316ad5ef7f190917bcac4accffc3301.tar.gz
android_external_exfat-eca4ae8fb316ad5ef7f190917bcac4accffc3301.tar.bz2
android_external_exfat-eca4ae8fb316ad5ef7f190917bcac4accffc3301.zip
Use apostrophe for both opening and closing quotes in messages.
This is a recommendation from GNU Coding Standards.
Diffstat (limited to 'dump')
-rw-r--r--dump/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dump/main.c b/dump/main.c
index 7ef571d..d91b9a0 100644
--- a/dump/main.c
+++ b/dump/main.c
@@ -85,13 +85,13 @@ static int dump_sb(const char* spec)
if (exfat_read(dev, &sb, sizeof(struct exfat_super_block)) < 0)
{
exfat_close(dev);
- exfat_error("failed to read from `%s'", spec);
+ exfat_error("failed to read from '%s'", spec);
return 1;
}
if (memcmp(sb.oem_name, "EXFAT ", sizeof(sb.oem_name)) != 0)
{
exfat_close(dev);
- exfat_error("exFAT file system is not found on `%s'", spec);
+ exfat_error("exFAT file system is not found on '%s'", spec);
return 1;
}