diff options
author | Jim Meyering <jim@meyering.net> | 1993-03-06 17:06:35 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1993-03-06 17:06:35 +0000 |
commit | a299f3cc81e2af0f051814594b05f00c4a6f3b9e (patch) | |
tree | f023679c3faf7acf574b99e303689717db6911c7 /src | |
parent | 90a29529827d931af370fdc07053d214fec440bf (diff) | |
download | coreutils-a299f3cc81e2af0f051814594b05f00c4a6f3b9e.tar.xz |
Compare getenv with NULL instead of 0 -- just for aesthetics.
Diffstat (limited to 'src')
-rw-r--r-- | src/tr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1656,7 +1656,7 @@ main (argc, argv) } } - posix_pedantic = (getenv ("POSIXLY_CORRECT") != 0); + posix_pedantic = (getenv ("POSIXLY_CORRECT") != NULL); non_option_args = argc - optind; translating = (non_option_args == 2 && !delete); |