summaryrefslogtreecommitdiffstats
path: root/stream/stream_dvdnav.c
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-08 23:18:56 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-08 23:18:56 +0000
commit9451809971f8c3998c371b46f628efec6187469a (patch)
treed10d57229d1659f165905d39d908fad27c4c016a /stream/stream_dvdnav.c
parentb12e3f188f83e0a1bee498cc1478741595032163 (diff)
downloadmpv-9451809971f8c3998c371b46f628efec6187469a.tar.bz2
mpv-9451809971f8c3998c371b46f628efec6187469a.tar.xz
changed ugly sizeof(*type_ptr) width sizeof(type)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20804 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/stream_dvdnav.c')
-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 f877f5927d..0e37ed6266 100644
--- a/stream/stream_dvdnav.c
+++ b/stream/stream_dvdnav.c
@@ -63,7 +63,7 @@ static dvdnav_priv_t * new_dvdnav_stream(char * filename) {
if (!filename)
return NULL;
- if (!(dvdnav_priv=calloc(1,sizeof(*dvdnav_priv))))
+ if (!(dvdnav_priv=calloc(1,sizeof(dvdnav_priv_t))))
return NULL;
if (!(dvdnav_priv->filename=strdup(filename))) {