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