diff options
Diffstat (limited to 'src/SongPrint.cxx')
-rw-r--r-- | src/SongPrint.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SongPrint.cxx b/src/SongPrint.cxx index c2501d037..d14eea417 100644 --- a/src/SongPrint.cxx +++ b/src/SongPrint.cxx @@ -97,8 +97,8 @@ song_print_info(Client &client, const DetachedSong &song, bool base) { song_print_uri(client, song, base); - const unsigned start_ms = song.GetStartMS(); - const unsigned end_ms = song.GetEndMS(); + const unsigned start_ms = song.GetStartTime().ToMS(); + const unsigned end_ms = song.GetEndTime().ToMS(); if (end_ms > 0) client_printf(client, "Range: %u.%03u-%u.%03u\n", |