diff options
author | Michael Meissner <michael.meissner@amd.com> | 2007-03-30 22:40:19 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 2007-03-30 22:40:19 +0000 |
commit | 4cd97075ff0332bcdf5419fa79804ad8a66de619 (patch) | |
tree | b6bcfbf5866e4083bd0b22ca145c41d33e31ccca /libcpp/directives.c | |
parent | 47ecd38dbf87d87f64c3db3a9fd2c716e63b6ca7 (diff) | |
download | gcc-4cd97075ff0332bcdf5419fa79804ad8a66de619.tar.gz |
make alloca call type correct
From-SVN: r123374
Diffstat (limited to 'libcpp/directives.c')
-rw-r--r-- | libcpp/directives.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/directives.c b/libcpp/directives.c index d9cf9d27204..ccb9f32b61d 100644 --- a/libcpp/directives.c +++ b/libcpp/directives.c @@ -2083,7 +2083,7 @@ static cpp_hashnode * lex_macro_node_from_str (cpp_reader *pfile, const char *str) { size_t len = strlen (str); - uchar *buf = (char *) alloca (len + 1); + uchar *buf = (uchar *) alloca (len + 1); cpp_hashnode *node; memcpy (buf, str, len); |