aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-01-31 07:15:10 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1996-01-31 07:15:10 -0500
commitb27804a87663e6fa09dd2d56cda678c3abf93dd9 (patch)
tree954a6684d239aa32d14a16bf5dbf710ac4229cb4 /gcc/gcc.c
parentf8e0b2eab0ba8af9312f1a7ce2d5e70cf778a006 (diff)
downloadgcc-b27804a87663e6fa09dd2d56cda678c3abf93dd9.zip
gcc-b27804a87663e6fa09dd2d56cda678c3abf93dd9.tar.gz
gcc-b27804a87663e6fa09dd2d56cda678c3abf93dd9.tar.bz2
(warn_std_ptr): Initialize with 0 instead of NULL_PTR.
From-SVN: r11128
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r--gcc/gcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 298a431..56e59c1 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -2364,7 +2364,7 @@ static int warn_B;
static int warn_std;
/* Gives value to pass as "warn" to add_prefix for standard prefixes. */
-static int *warn_std_ptr = NULL_PTR;
+static int *warn_std_ptr = 0;
/* Create the vector `switches' and its contents.
Store its length in `n_switches'. */