diff options
author | Max Kellermann <max@duempel.org> | 2014-08-28 06:54:19 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-28 13:03:18 +0200 |
commit | 6ad933982f68f5fcbd1b3179bf5fed26f63aa792 (patch) | |
tree | f0aee7be7dd2caba5a795602bf519739ed6cefc0 /src/SongPrint.cxx | |
parent | 854258f37626d40271a821d4835e9cfb946c8ad8 (diff) | |
download | mpd-6ad933982f68f5fcbd1b3179bf5fed26f63aa792.tar.gz mpd-6ad933982f68f5fcbd1b3179bf5fed26f63aa792.tar.xz mpd-6ad933982f68f5fcbd1b3179bf5fed26f63aa792.zip |
DetachedSong: use std::chrono::duration for start_ms and end_ms
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", |