libgcc2.c (__eprintf): Make args consistent with prototype in assert.h.
authorDave Love <d.love@dl.ac.uk>
Mon, 6 Jul 1998 09:24:31 +0000 (09:24 +0000)
committerRichard Henderson <rth@gcc.gnu.org>
Mon, 6 Jul 1998 09:24:31 +0000 (02:24 -0700)
        * libgcc2.c (__eprintf): Make args consistent with prototype in
        assert.h.

From-SVN: r20943

gcc/ChangeLog
gcc/libgcc2.c

index 296556e977c0bdf11d3190cce75932f8d27e6671..4853b1845205e575ba8b60c7ae262642783f562c 100644 (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,
index 30fa61a03e8b445850bbe565e3da22c6e44463fa..106a444f79c624ec55d242f7e44160f4eed17561 100644 (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);