From 4679ade3d07c159e201a8c6af4811e110d7be90e Mon Sep 17 00:00:00 2001 From: ghazi Date: Wed, 2 May 2001 14:31:45 +0000 Subject: * c-lex.c: NULL_PTR -> NULL. * cse.c: Likewise. * emit-rtl.c: Likewise. * gcse.c: Likewise. * genpeep.c: Likewise. * jump.c: Likewise. * mips-tdump.c: Likewise. * reload1.c: Likewise. * rtlanal.c: Likewise. * stmt.c: Likewise. * stor-layout.c: Likewise. * toplev.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41761 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/c-lex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/c-lex.c') diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 6f607692f4f..85ed543eaa4 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -1524,7 +1524,7 @@ lex_string (str, len, wide) #ifdef MULTIBYTE_CHARS /* Reset multibyte conversion state. */ - (void) local_mbtowc (NULL_PTR, NULL_PTR, 0); + (void) local_mbtowc (NULL, NULL, 0); #endif while (p < limit) @@ -1624,7 +1624,7 @@ lex_charconst (str, len, wide) #ifdef MULTIBYTE_CHARS int longest_char = local_mb_cur_max (); - (void) local_mbtowc (NULL_PTR, NULL_PTR, 0); + (void) local_mbtowc (NULL, NULL, 0); #endif max_chars = TYPE_PRECISION (integer_type_node) / width; -- cgit v1.2.1