aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplib.c
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-09-08 08:24:39 +0000
committerJeff Law <law@gcc.gnu.org>1999-09-08 02:24:39 -0600
commit236d1439f36030d1e8aa81c81d98e5981a83b166 (patch)
treefdbff91812403a4e32838ed54056032312e4efe8 /gcc/cpplib.c
parent6659980655dad5ffe64708319990885588016fb1 (diff)
downloadgcc-236d1439f36030d1e8aa81c81d98e5981a83b166.zip
gcc-236d1439f36030d1e8aa81c81d98e5981a83b166.tar.gz
gcc-236d1439f36030d1e8aa81c81d98e5981a83b166.tar.bz2
* cpplib.c (cpp_push_buffer): Fix order of arguments.
From-SVN: r29201
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r--gcc/cpplib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c
index 1c85ba7..4ac7f51 100644
--- a/gcc/cpplib.c
+++ b/gcc/cpplib.c
@@ -718,7 +718,7 @@ cpp_push_buffer (pfile, buffer, length)
return NULL;
}
- new = (cpp_buffer *) xcalloc (sizeof (cpp_buffer), 1);
+ new = (cpp_buffer *) xcalloc (1, sizeof (cpp_buffer));
new->if_stack = pfile->if_stack;
new->cleanup = null_cleanup;