summaryrefslogtreecommitdiff
path: root/adapters
diff options
context:
space:
mode:
authorPietro Cerutti <gahr@gahr.ch>2014-06-17 19:39:20 +0000
committerJan-Erik Rediger <janerik@fnordig.de>2015-07-27 23:17:41 +0200
commit9069b147b0769e8f3b4b23e8ace1c96d1b257212 (patch)
tree79e5ed5fd6655bc6ca7e52791f8d7a3064367cf6 /adapters
parent1984b309b82f1dd07f0ee04bb618e4b4ff41a3fe (diff)
Fix typo
Diffstat (limited to 'adapters')
-rw-r--r--adapters/qt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/adapters/qt.h b/adapters/qt.h
index 9c801db..d216ad7 100644
--- a/adapters/qt.h
+++ b/adapters/qt.h
@@ -87,7 +87,7 @@ class RedisQtAdapter : public QObject {
private:
void addRead() {
if (m_read) return;
- m_read = new QSocketNotifier(m_ctx->c.fd, QSocketNotifier::Read, 0),
+ m_read = new QSocketNotifier(m_ctx->c.fd, QSocketNotifier::Read, 0);
connect(m_read, SIGNAL(activated(int)), this, SLOT(read()));
}