aboutsummaryrefslogtreecommitdiff
path: root/src/protocols/guppyclient.cpp
diff options
context:
space:
mode:
authorDima Krasner <dima@dimakrasner.com>2023-11-07 08:27:00 +0200
committerFelix Queißner <felix@ib-queissner.de>2023-11-09 08:20:12 +0100
commitb84f4ba5ddff171efc28a002e66a23a212199380 (patch)
tree2874a2584b226cba8ed32c461bbc0a8508a32714 /src/protocols/guppyclient.cpp
parente18f9e4ecb50bec23bc5622fc3d17c76d900ab3a (diff)
coding style cleanup
Diffstat (limited to 'src/protocols/guppyclient.cpp')
-rw-r--r--src/protocols/guppyclient.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/protocols/guppyclient.cpp b/src/protocols/guppyclient.cpp
index 52417f3..d07ce23 100644
--- a/src/protocols/guppyclient.cpp
+++ b/src/protocols/guppyclient.cpp
@@ -38,7 +38,9 @@ bool GuppyClient::startRequest(const QUrl &url, RequestOptions options)
this->requested_url = url;
this->was_cancelled = false;
- this->prev_seq = this->first_seq = this->last_seq = 0;
+ this->prev_seq = 0;
+ this->first_seq = 0;
+ this->last_seq = 0;
this->socket.connectToHost(url.host(), url.port(6775));
return true;