summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-27 18:31:50 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-27 18:31:50 +0000
commitdef6db4b629f5b394b124528aaaa8bc52c97c02f (patch)
treeddf90808957faf70606effc9d7c27770ad69cf87
parent9ba43bdd8860626827c09db41f5d9f6cc274285f (diff)
downloadmpv-def6db4b629f5b394b124528aaaa8bc52c97c02f.tar.bz2
mpv-def6db4b629f5b394b124528aaaa8bc52c97c02f.tar.xz
Fix several 100l
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23879 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--stream/vcd_read_fbsd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/stream/vcd_read_fbsd.h b/stream/vcd_read_fbsd.h
index cd84cea825..e5a8b12d02 100644
--- a/stream/vcd_read_fbsd.h
+++ b/stream/vcd_read_fbsd.h
@@ -27,9 +27,9 @@ typedef struct {
} cdsector_t;
#ifdef VCD_NETBSD
-typedef struct ioc_read_toc_entry vcd_tocentry
+typedef struct ioc_read_toc_entry vcd_tocentry;
#else
-typedef struct ioc_read_toc_single_entry vcd_tocentry
+typedef struct ioc_read_toc_single_entry vcd_tocentry;
#endif
typedef struct mp_vcd_priv_st {
@@ -156,7 +156,7 @@ vcd_read_toc(int fd)
tocentry.data = &tocentry_data;
#endif
if (!read_toc_entry(fd, &tocentry,
- i <= tochdr.ending_track ? i : CDROM_LEADOUT));
+ i <= tochdr.ending_track ? i : CDROM_LEADOUT))
return NULL;
if (i <= tochdr.ending_track)