summaryrefslogtreecommitdiff
path: root/src/protocol
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2020-02-16 20:46:13 +0100
committerMax Kellermann <max@musicpd.org>2020-02-16 20:46:13 +0100
commit07e0a31d02dc27411a7a27a8826c39c5671833a5 (patch)
treec730b448a4c883b018cdc177f725bec893b36c94 /src/protocol
parent36a678276ba4f7b41a33878eeee65cf7a4948728 (diff)
parentf24bcc7f427e3c1728fc6929dc867a74bdd22e12 (diff)
Merge tag 'v0.21.20'
release v0.21.20
Diffstat (limited to 'src/protocol')
-rw-r--r--src/protocol/ArgParser.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/ArgParser.cxx b/src/protocol/ArgParser.cxx
index bdbe751f8..fd0c273dc 100644
--- a/src/protocol/ArgParser.cxx
+++ b/src/protocol/ArgParser.cxx
@@ -175,5 +175,5 @@ SignedSongTime
ParseCommandArgSignedSongTime(const char *s)
{
auto value = ParseCommandArgFloat(s);
- return SongTime::FromS(value);
+ return SignedSongTime::FromS(value);
}