Compare getenv with NULL instead of 0 -- just for aesthetics.

This commit is contained in:
Jim Meyering 1993-03-06 17:06:35 +00:00
parent 90a2952982
commit a299f3cc81

View File

@ -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);