diff options
author | Dave Love <d.love@dl.ac.uk> | 1998-07-06 09:24:31 +0000 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1998-07-06 02:24:31 -0700 |
commit | 10c301ac334f7cc89f10f6583121585c371cce24 (patch) | |
tree | 67950b95618ef71c70bec9eb42aa36f3657a53d8 /gcc/libgcc2.c | |
parent | 235d853db1bdddbda6cd5fce90a25c29635e2ead (diff) | |
download | gcc-10c301ac334f7cc89f10f6583121585c371cce24.zip gcc-10c301ac334f7cc89f10f6583121585c371cce24.tar.gz gcc-10c301ac334f7cc89f10f6583121585c371cce24.tar.bz2 |
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
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r-- | gcc/libgcc2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index 30fa61a..106a444 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -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); |