Mercurial > mplayer.hg
changeset 33034:e97e23af7e8f
Use fewer () to make code more readable.
author | reimar |
---|---|
date | Sat, 26 Mar 2011 20:22:43 +0000 |
parents | 1aed51b973fa |
children | f5dc85f6f84b |
files | stream/stream_dvdnav.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/stream/stream_dvdnav.c Sat Mar 26 20:04:47 2011 +0000 +++ b/stream/stream_dvdnav.c Sat Mar 26 20:22:43 2011 +0000 @@ -464,7 +464,7 @@ } case STREAM_CTRL_SEEK_TO_TIME: { - uint64_t tm = (uint64_t) (*((double*)arg) * 90000); + uint64_t tm = *(double *)arg * 90000; if(dvdnav_time_search(priv->dvdnav, tm) == DVDNAV_STATUS_OK) return 1; break;