diff options
author | Alan Modra <amodra@gmail.com> | 2001-03-30 02:19:36 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-03-30 02:19:36 +0000 |
commit | e46d99eb07bc0e366152fe2e69c613a15496e347 (patch) | |
tree | 55c79a36f0269e43402893bb90316d29a865e26f /gas/dwarf2dbg.c | |
parent | bee723322c56ee34f9f511e901171e8ebfe5d22e (diff) | |
download | gdb-e46d99eb07bc0e366152fe2e69c613a15496e347.zip gdb-e46d99eb07bc0e366152fe2e69c613a15496e347.tar.gz gdb-e46d99eb07bc0e366152fe2e69c613a15496e347.tar.bz2 |
Multi-pass relaxation machinery.
Diffstat (limited to 'gas/dwarf2dbg.c')
-rw-r--r-- | gas/dwarf2dbg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/dwarf2dbg.c b/gas/dwarf2dbg.c index bc37e7e..8707542 100644 --- a/gas/dwarf2dbg.c +++ b/gas/dwarf2dbg.c @@ -324,7 +324,7 @@ dwarf2_directive_file (dummy) int dummy ATTRIBUTE_UNUSED; { offsetT num; - const char *filename; + char *filename; int filename_len; /* Continue to accept a bare string and pass it off. */ @@ -347,7 +347,7 @@ dwarf2_directive_file (dummy) if (num < files_in_use && files[num].filename != 0) { - as_bad (_("File number %d already allocated"), num); + as_bad (_("File number %ld already allocated"), (long) num); return; } |