changed character comparisons with NULL

This commit is contained in:
ceriel 1989-12-13 09:19:47 +00:00
parent bdb0b550f7
commit a5f05e8ba0

View file

@ -58,7 +58,7 @@ char **argv;
continue;
switch (*p++) {
case 'o':
if (*p != NULL) {
if (*p != '\0') {
aoutpath = p;
break;
}
@ -68,7 +68,7 @@ char **argv;
aoutpath = argv[i];
break;
case 'T':
if (*p != NULL) {
if (*p != '\0') {
extern char *tmp_dir;
tmp_dir = p;