]> git.gag.com Git - fw/sdcc/commitdiff
Suppress some warning
authorjbess <jbess@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Wed, 7 Feb 2001 10:01:46 +0000 (10:01 +0000)
committerjbess <jbess@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Wed, 7 Feb 2001 10:01:46 +0000 (10:01 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@604 4a8a32a2-be11-0410-ad9d-d568d2c75423

support/cpp/cpplib.c

index f1bac6ad49934874c5324534f078538a848560a9..6cd0b3dec9a32260276f55f861848324bd5326d6 100644 (file)
@@ -1687,7 +1687,7 @@ create_definition (
   }
       }
     /* now everything from bp before limit is the definition. */
-    defn = collect_expansion (pfile, bp, limit, -1, NULL_PTR);
+    defn = collect_expansion (pfile, bp, limit, -1,(struct arglist *) NULL_PTR);
     defn->args.argnames = (U_CHAR *) "";
   }
 
@@ -7323,7 +7323,7 @@ cpp_read_check_assertion (
   else
     result = check_assertion (pfile,
             pfile->token_buffer + name_start, name_length,
-            0, NULL_PTR);
+            0, (struct arglist *)NULL_PTR);
   CPP_ADJUST_WRITTEN (pfile, - name_length);  /* pop */
   return result;
 }