aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-01-24 11:22:52 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-01-24 11:22:52 +0900
commitb9b2d97e83ac14798c220d6f6dc4ead1809a9cf7 (patch)
tree630d7a1c5cdaa8031fc72e95c8345df56e592ce7
parent0ecfd3897cc3264c21f80a121b4b6774ac2d67f7 (diff)
downloadlibquotient-b9b2d97e83ac14798c220d6f6dc4ead1809a9cf7.tar.gz
libquotient-b9b2d97e83ac14798c220d6f6dc4ead1809a9cf7.zip
splitMediaId: fix typos in the assertion failure message
-rw-r--r--connection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/connection.cpp b/connection.cpp
index b6ede0af..1257f251 100644
--- a/connection.cpp
+++ b/connection.cpp
@@ -303,8 +303,8 @@ inline auto splitMediaId(const QString& mediaId)
{
auto idParts = mediaId.split('/');
Q_ASSERT_X(idParts.size() == 2, __FUNCTION__,
- ("mediaId:" + mediaId +
- "doesn't look like \"serverName/localMediaId\"").toLatin1());
+ ("'" + mediaId +
+ "' doesn't look like 'serverName/localMediaId'").toLatin1());
return idParts;
}