From da08d787916c0ec9f6c72dabedc255c1b63c1fc4 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 28 Jun 2018 16:28:28 -0700 Subject: stat: remove hideous GNUism. Even GNU coreutils 8.28 doesn't use the lopsided `quoting' any more. --- toys/other/stat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/other/stat.c') 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); -- cgit v1.2.3