diff options
author | Denys Vlasenko | 2017-08-02 14:26:33 +0200 |
---|---|---|
committer | Denys Vlasenko | 2017-08-02 14:26:33 +0200 |
commit | 95f7953f2c46c7b9c799250aa8dc6eb10cc5c726 (patch) | |
tree | a59020f297e319343585b41e5afae9630dc8223d /shell/ash_test | |
parent | 18e781dc02cfc293d33b02f924ef70513c2f205a (diff) | |
download | busybox-95f7953f2c46c7b9c799250aa8dc6eb10cc5c726.zip busybox-95f7953f2c46c7b9c799250aa8dc6eb10cc5c726.tar.gz |
do not use `a' quoting style in comments
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test')
-rw-r--r-- | shell/ash_test/printenv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash_test/printenv.c b/shell/ash_test/printenv.c index c0c5e19..c86308d 100644 --- a/shell/ash_test/printenv.c +++ b/shell/ash_test/printenv.c @@ -56,7 +56,7 @@ main (argc, argv) if (**argv == **envp && strncmp (*envp, *argv, len) == 0) { eval = *envp + len; - /* If the environment variable doesn't have an `=', ignore it. */ + /* If the environment variable doesn't have an '=', ignore it. */ if (*eval == '=') { puts (eval + 1); |