Commit 8fef2e47 by Brad Lucier Committed by Jeff Law

* spew.c (snarf_defarg): Cast 2nd arg to obstack_blank to (int).

From-SVN: r36921
parent 11881f37
Tue Oct 17 20:19:06 2000 Brad Lucier <lucier@math.purdue.edu>
* spew.c (snarf_defarg): Cast 2nd arg to obstack_blank to (int).
2000-10-17 Joseph S. Myers <jsm28@cam.ac.uk>
* decl.c (WINT_TYPE): Define.
......
......@@ -1240,7 +1240,7 @@ snarf_defarg ()
/* Unget the last token. */
push_token ((struct token *) (obstack_base (&inline_text_obstack) + point));
/* This is the documented way to shrink a growing obstack block. */
obstack_blank (&inline_text_obstack, - sizeof (struct token));
obstack_blank (&inline_text_obstack, - (int) sizeof (struct token));
done:
len = obstack_object_size (&inline_text_obstack);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment