diff options
author | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-08 23:18:56 +0000 |
---|---|---|
committer | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-08 23:18:56 +0000 |
commit | 9451809971f8c3998c371b46f628efec6187469a (patch) | |
tree | d10d57229d1659f165905d39d908fad27c4c016a | |
parent | b12e3f188f83e0a1bee498cc1478741595032163 (diff) |
changed ugly sizeof(*type_ptr) width sizeof(type)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20804 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | stream/stream_dvdnav.c | 2 |
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))) { |