libgcc2.c (__eprintf): Make args consistent with prototype in assert.h.

* libgcc2.c (__eprintf): Make args consistent with prototype in
        assert.h.

From-SVN: r20943
This commit is contained in:
Dave Love 1998-07-06 09:24:31 +00:00 committed by Richard Henderson
parent 235d853db1
commit 10c301ac33
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Mon Jul 6 09:25:06 1998 Dave Love <d.love@dl.ac.uk>
* libgcc2.c (__eprintf): Make args consistent with prototype in
assert.h.
Mon Jul 6 00:28:43 1998 Mark Mitchell <mark@markmitchell.com>
* cse.c (cse_insn): When SETting (MEM (ADDRESSOF (X))) to Y,

View File

@ -1405,7 +1405,7 @@ __builtin_saveregs ()
/* This is used by the `assert' macro. */
void
__eprintf (const char *string, const char *expression,
int line, const char *filename)
unsigned int line, const char *filename)
{
fprintf (stderr, string, expression, line, filename);
fflush (stderr);