changed character comparisons with NULL
authorceriel <none@none>
Wed, 13 Dec 1989 09:19:47 +0000 (09:19 +0000)
committerceriel <none@none>
Wed, 13 Dec 1989 09:19:47 +0000 (09:19 +0000)
mach/proto/as/comm4.c

index c527f98..ee778af 100644 (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;