# HG changeset patch # User ib # Date 1355103818 0 # Node ID d3e141fc74d8d7693430e9e9a31bea59c17c21fe # Parent fb9968ad466ebff0ca97a8f599cd12dfc09f1824 Change parameter from NULL to 0. This is for optical reasons and to reflect that nothing is passed. diff -r fb9968ad466e -r d3e141fc74d8 gui/dialog/playlist.c --- 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);