diff options
author | Pietro Cerutti <gahr@gahr.ch> | 2014-06-17 19:39:20 +0000 |
---|---|---|
committer | Jan-Erik Rediger <janerik@fnordig.de> | 2015-07-27 23:17:41 +0200 |
commit | 9069b147b0769e8f3b4b23e8ace1c96d1b257212 (patch) | |
tree | 79e5ed5fd6655bc6ca7e52791f8d7a3064367cf6 | |
parent | 1984b309b82f1dd07f0ee04bb618e4b4ff41a3fe (diff) |
Fix typo
-rw-r--r-- | adapters/qt.h | 2 |
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())); } |