Commit c637238a authored by Warren Dukes's avatar Warren Dukes

change 'Num' => 'Pos" for position

git-svn-id: https://svn.musicpd.org/mpd/trunk@1455 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 8c445d3f
...@@ -424,7 +424,7 @@ void printPlaylistSongInfo(FILE * fp, int song) { ...@@ -424,7 +424,7 @@ void printPlaylistSongInfo(FILE * fp, int song) {
if((tag = (playlist.songs[song])->tag)) { if((tag = (playlist.songs[song])->tag)) {
printMpdTag(fp, tag); printMpdTag(fp, tag);
} }
myfprintf(fp, "Num: %i\n", song); myfprintf(fp, "Pos: %i\n", song);
myfprintf(fp, "Id: %i\n", playlist.numToId[song]); myfprintf(fp, "Id: %i\n", playlist.numToId[song]);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment