From d7e51cdfed4159b80e9fdb0aa3ee8543e8657075 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Sun, 19 Aug 2018 18:12:28 +0100 Subject: [PATCH] Problem: indentation issues with PR #3226 Solution: fix them --- src/pgm_receiver.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pgm_receiver.cpp b/src/pgm_receiver.cpp index 78533f72..88105cb9 100644 --- a/src/pgm_receiver.cpp +++ b/src/pgm_receiver.cpp @@ -166,8 +166,9 @@ void zmq::pgm_receiver_t::in_event () // If active_tsi is not null, there is a pending restart_input. // Keep the internal state as is so that restart_input would process the right data if (active_tsi) { - return; + return; } + // Read data from the underlying pgm_socket. const pgm_tsi_t *tsi = NULL; @@ -181,8 +182,7 @@ void zmq::pgm_receiver_t::in_event () while (true) { // Get new batch of data. // Note the workaround made not to break strict-aliasing rules. - - insize = 0; + insize = 0; void *tmp = NULL; ssize_t received = pgm_socket.receive (&tmp, &tsi);