Mercurial > mplayer.hg
changeset 35548:d3e141fc74d8
Change parameter from NULL to 0.
This is for optical reasons and to reflect that nothing is passed.
author | ib |
---|---|
date | Mon, 10 Dec 2012 01:43:38 +0000 |
parents | fb9968ad466e |
children | 463d8e512c38 |
files | gui/dialog/playlist.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/gui/dialog/playlist.c Sun Dec 09 16:49:45 2012 +0000 +++ b/gui/dialog/playlist.c Mon Dec 10 01:43:38 2012 +0000 @@ -236,7 +236,7 @@ guiInfo.PlaylistNext = (curr.name ? False : True); guiInfo.Track = 1; } - guiInfo.Tracks = (int) listMgr( PLAYLIST_ITEM_GET_POS,NULL ); + guiInfo.Tracks = (int) listMgr( PLAYLIST_ITEM_GET_POS,0 ); } else if (isPlaylistStreamtype && !guiInfo.Playing) uiUnsetFile(); free(curr.path);