aboutsummaryrefslogtreecommitdiffstats
path: root/fsck
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 /fsck
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 'fsck')
-rw-r--r--fsck/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fsck/main.c b/fsck/main.c
index bb716e8..30bc4c8 100644
--- a/fsck/main.c
+++ b/fsck/main.c
@@ -45,7 +45,7 @@ static int nodeck(struct exfat* ef, struct exfat_node* node)
char name[UTF8_BYTES(EXFAT_NAME_MAX) + 1];
exfat_get_name(node, name, sizeof(name) - 1);
- exfat_error("file `%s' has invalid cluster 0x%x", name, c);
+ exfat_error("file '%s' has invalid cluster 0x%x", name, c);
rc = 1;
break;
}
@@ -54,7 +54,7 @@ static int nodeck(struct exfat* ef, struct exfat_node* node)
char name[UTF8_BYTES(EXFAT_NAME_MAX) + 1];
exfat_get_name(node, name, sizeof(name) - 1);
- exfat_error("cluster 0x%x of file `%s' is not allocated", c, name);
+ exfat_error("cluster 0x%x of file '%s' is not allocated", c, name);
rc = 1;
}
c = exfat_next_cluster(ef, node, c);
@@ -72,9 +72,9 @@ static void dirck(struct exfat* ef, const char* path)
char* entry_path;
if (exfat_lookup(ef, &parent, path) != 0)
- exfat_bug("directory `%s' is not found", path);
+ exfat_bug("directory '%s' is not found", path);
if (!(parent->flags & EXFAT_ATTRIB_DIR))
- exfat_bug("`%s' is not a directory (0x%x)", path, parent->flags);
+ exfat_bug("'%s' is not a directory (0x%x)", path, parent->flags);
if (nodeck(ef, parent) != 0)
{
exfat_put_node(ef, parent);