aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-03-08 18:21:34 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1995-03-08 18:21:34 -0500
commit720e51b748e178b42c50368dc79cc3a2ab862917 (patch)
treebd93438cc1804787a333809aa152180fe0f86716 /gcc
parenta7a0564039252a5624ff3696f57c8e377a676c55 (diff)
downloadgcc-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cccp.c b/gcc/cccp.c
index 584609b..e88d2f7 100644
--- a/gcc/cccp.c
+++ b/gcc/cccp.c
@@ -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! */