summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-19 19:11:51 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-19 19:11:51 +0000
commit03d052a129eb82f1cbd3dc844d44056eaaf7eb6f (patch)
tree74472be7f26e6d6faedf53007d1b857a15c0545b
parentcf8daf54a244b3db74a7225c99529bbf78cf0ad2 (diff)
downloadmpv-03d052a129eb82f1cbd3dc844d44056eaaf7eb6f.tar.bz2
mpv-03d052a129eb82f1cbd3dc844d44056eaaf7eb6f.tar.xz
10l: misplaced brace in a switch
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19457 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--stream/stream_dvdnav.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_dvdnav.c b/stream/stream_dvdnav.c
index 2aeffc94df..60c355b42c 100644
--- a/stream/stream_dvdnav.c
+++ b/stream/stream_dvdnav.c
@@ -215,11 +215,11 @@ int dvdnav_stream_read(dvdnav_priv_t * dvdnav_priv, unsigned char *buf, int *len
dvdnav_still_skip(dvdnav_priv->dvdnav); // don't let dvdnav stall on this image
break;
+ }
case DVDNAV_WAIT:
dvdnav_wait_skip(dvdnav_priv->dvdnav);
break;
}
- }
// got an event, repeat the read
dvdnav_stream_add_event(dvdnav_priv,event,buf,*len);