diff options
author | Elliott Hughes <enh@google.com> | 2018-06-28 16:28:28 -0700 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-06-28 21:48:01 -0500 |
commit | da08d787916c0ec9f6c72dabedc255c1b63c1fc4 (patch) | |
tree | e7cd0faf3d2e906936ecda2692da64241ef16119 /toys/other | |
parent | d376344bfd834c73347b8e523231438969b7220f (diff) | |
download | toybox-da08d787916c0ec9f6c72dabedc255c1b63c1fc4.tar.gz |
stat: remove hideous GNUism.
Even GNU coreutils 8.28 doesn't use the lopsided `quoting' any more.
Diffstat (limited to 'toys/other')
-rw-r--r-- | toys/other/stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/stat.c b/toys/other/stat.c index a1e12d58..0622a525 100644 --- a/toys/other/stat.c +++ b/toys/other/stat.c @@ -112,7 +112,7 @@ static void print_stat(char type) } llist_traverse(mt, free); } else if (type == 'N') { - xprintf("`%s'", TT.file); + xprintf("%s", TT.file); if (S_ISLNK(stat->st_mode)) if (readlink0(TT.file, toybuf, sizeof(toybuf))) xprintf(" -> `%s'", toybuf); |