From 5fe6365faa573debcccc58228105c0c4807abe60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Tue, 10 Nov 2015 15:07:44 +0100 Subject: [PATCH] Fix build How did that happen? I run the autotest... --- src/wayland/autotests/client/test_wayland_connection_thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wayland/autotests/client/test_wayland_connection_thread.cpp b/src/wayland/autotests/client/test_wayland_connection_thread.cpp index ff9d8b02dd..0a98576c78 100644 --- a/src/wayland/autotests/client/test_wayland_connection_thread.cpp +++ b/src/wayland/autotests/client/test_wayland_connection_thread.cpp @@ -209,7 +209,7 @@ void TestWaylandConnectionThread::testConnectFd() using namespace KWayland::Server; int sv[2]; QVERIFY(socketpair(AF_UNIX, SOCK_STREAM, 0, sv) >= 0); - auto c = m_display->createClient(sv[0]) + auto c = m_display->createClient(sv[0]); QVERIFY(c); QSignalSpy disconnectedSpy(c, &ClientConnection::disconnected); QVERIFY(disconnectedSpy.isValid());