diff options
| author | Dima Krasner <dima@dimakrasner.com> | 2023-11-07 08:27:00 +0200 |
|---|---|---|
| committer | Felix Queißner <felix@ib-queissner.de> | 2023-11-09 08:20:12 +0100 |
| commit | b84f4ba5ddff171efc28a002e66a23a212199380 (patch) | |
| tree | 2874a2584b226cba8ed32c461bbc0a8508a32714 | |
| parent | e18f9e4ecb50bec23bc5622fc3d17c76d900ab3a (diff) | |
coding style cleanup
| -rw-r--r-- | src/protocols/guppyclient.cpp | 4 |
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; |
