summaryrefslogtreecommitdiffstats
path: root/vobsub.c
diff options
context:
space:
mode:
authorreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-14 06:26:31 +0000
committerreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-14 06:26:31 +0000
commita814f0ebcdaaeae2f061f10a02fe94d9bbeeab86 (patch)
tree3f2d5e3e974f5e1069a583b24cdb77eeebf34802 /vobsub.c
parentb5de6c39e69206d8ac52a5d5230ddfd9bae21562 (diff)
downloadmpv-a814f0ebcdaaeae2f061f10a02fe94d9bbeeab86.tar.bz2
mpv-a814f0ebcdaaeae2f061f10a02fe94d9bbeeab86.tar.xz
removes unused parentheses lefted behind in the r19075 sizeof(char) cleanups, noticed by dalias
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19079 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'vobsub.c')
-rw-r--r--vobsub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vobsub.c b/vobsub.c
index 2e3383534f..24653278c6 100644
--- a/vobsub.c
+++ b/vobsub.c
@@ -1071,7 +1071,7 @@ vobsub_open(const char *const name,const char *const ifo,const int force,void**
vob->spu_streams_current = 0;
vob->delay = 0;
vob->forced_subs=0;
- buf = malloc((strlen(name) + 5));
+ buf = malloc(strlen(name) + 5);
if (buf) {
rar_stream_t *fd;
mpeg_t *mpg;