diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-03-08 18:21:34 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-03-08 18:21:34 -0500 |
commit | 720e51b748e178b42c50368dc79cc3a2ab862917 (patch) | |
tree | bd93438cc1804787a333809aa152180fe0f86716 /gcc | |
parent | a7a0564039252a5624ff3696f57c8e377a676c55 (diff) | |
download | gcc-720e51b748e178b42c50368dc79cc3a2ab862917.zip gcc-720e51b748e178b42c50368dc79cc3a2ab862917.tar.gz gcc-720e51b748e178b42c50368dc79cc3a2ab862917.tar.bz2 |
(do_include): Fix type typo: pcfbuflimit is char *, not int.
From-SVN: r9139
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cccp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4099,7 +4099,7 @@ do_include (buf, limit, op, keyword) int angle_brackets = 0; /* 0 for "...", 1 for <...> */ int pcf = -1; char *pcfbuf; - int pcfbuflimit; + char *pcfbuflimit; int pcfnum; f= -1; /* JF we iz paranoid! */ |