From b15edd5884eb98f2bda4c755fc0caa6ad212b3c4 Mon Sep 17 00:00:00 2001 From: jbess Date: Wed, 7 Feb 2001 10:01:46 +0000 Subject: [PATCH] Suppress some warning git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@604 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- support/cpp/cpplib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/cpp/cpplib.c b/support/cpp/cpplib.c index f1bac6ad..6cd0b3de 100644 --- a/support/cpp/cpplib.c +++ b/support/cpp/cpplib.c @@ -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; } -- 2.47.2