aboutsummaryrefslogtreecommitdiff
path: root/include/coff/external.h
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2001-03-24 00:45:11 +0000
committerNick Clifton <nickc@redhat.com>2001-03-24 00:45:11 +0000
commite3806b37756faac4184b563d69443a24bee1098f (patch)
tree2551e122bed8a284f49b1e63f0d5b47f767f9593 /include/coff/external.h
parentc2bd2ed9a60d828ac3120c8df1eec91680233316 (diff)
downloadgdb-e3806b37756faac4184b563d69443a24bee1098f.zip
gdb-e3806b37756faac4184b563d69443a24bee1098f.tar.gz
gdb-e3806b37756faac4184b563d69443a24bee1098f.tar.bz2
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 b584f30..6fd41f1 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));