diff options
author | Nick Clifton <nickc@redhat.com> | 2001-03-24 00:45:11 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-03-24 00:45:11 +0000 |
commit | 5fa78238cbef3882ee19c8671b8c33dd4c7a22be (patch) | |
tree | 5fd5e2ae6502a2462e3335a062e1f8588aa98398 /include/coff/external.h | |
parent | c5807d7f9488e67855050b9e1fd5efe5a8c79a0a (diff) | |
download | cygnal-5fa78238cbef3882ee19c8671b8c33dd4c7a22be.tar.gz cygnal-5fa78238cbef3882ee19c8671b8c33dd4c7a22be.tar.bz2 cygnal-5fa78238cbef3882ee19c8671b8c33dd4c7a22be.zip |
Fix compile time warnings.
Diffstat (limited to 'include/coff/external.h')
-rw-r--r-- | include/coff/external.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/coff/external.h b/include/coff/external.h index b584f30f9..6fd41f19c 100644 --- a/include/coff/external.h +++ b/include/coff/external.h @@ -113,8 +113,8 @@ struct external_lineno #define LINESZ (4 + L_LNNO_SIZE) #if L_LNNO_SIZE == 4 -#define GET_LINENO_LNNO(abfd, ext) bfd_h_get_32 (abfd, (bfd_byte *) (ext->l_lnno)); -#define PUT_LINENO_LNNO(abfd,val, ext) bfd_h_put_32 (abfd,val, (bfd_byte *) (ext->l_lnno)); +#define GET_LINENO_LNNO(abfd, ext) bfd_h_get_32 (abfd, (bfd_byte *) (ext->l_lnno)); +#define PUT_LINENO_LNNO(abfd, val, ext) bfd_h_put_32 (abfd, val, (bfd_byte *) (ext->l_lnno)); #endif #if L_LNNO_SIZE == 2 #define GET_LINENO_LNNO(abfd, ext) bfd_h_get_16 (abfd, (bfd_byte *) (ext->l_lnno)); |