Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2001-03-24 03:45:11 +0300
committerNick Clifton <nickc@redhat.com>2001-03-24 03:45:11 +0300
commit5fa78238cbef3882ee19c8671b8c33dd4c7a22be (patch)
tree5fd5e2ae6502a2462e3335a062e1f8588aa98398 /include/coff/external.h
parentc5807d7f9488e67855050b9e1fd5efe5a8c79a0a (diff)
Fix compile time warnings.
Diffstat (limited to 'include/coff/external.h')
-rw-r--r--include/coff/external.h4
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));