From fdc050c72f835cf151b9e92934c6f92f80a1ba3c Mon Sep 17 00:00:00 2001
From: Alessio Igor Bogani <alessio.bogani@elettra.eu>
Date: Thu, 18 Apr 2024 11:53:25 +0200
Subject: [PATCH] Fix indentation

---
 src/Serial2.cpp | 68 ++++++++++++++++++++++++-------------------------
 1 file changed, 34 insertions(+), 34 deletions(-)

diff --git a/src/Serial2.cpp b/src/Serial2.cpp
index 151cb2a..4327f26 100644
--- a/src/Serial2.cpp
+++ b/src/Serial2.cpp
@@ -858,38 +858,38 @@ ssize_t Serial2::_write(int fd, const void *buf, size_t count)
 
 void Serial2::_read(size_t bytes_to_read)
 {
-  unsigned char buffer[10000];
-  size_t bytes_total = data.size();
-
-  while (bytes_total < bytes_to_read) {
-    int s = select(READ);
-    if (s == 0)
-      goto timeout;
-    else if (s < 0)
-      goto error;
-    else { /* s > 0 */ }
-
-    size_t count = min((size_t)max(input_queue_length(), 0), sizeof(buffer));
-    ssize_t bytes_readed = ::read(fd, buffer, count);
-
-    if (bytes_readed > 0) {
-      data.insert(data.end(), &buffer[0], &buffer[bytes_readed]);
-      bytes_total += bytes_readed;
-    } else if (bytes_readed == 0) {
-      if (multiplexing == SELECT)
-        goto error;
-      /* Continue if multiplexing == SLEEP */
-    }	else { /* bytes_readed < 0 */
-      goto error;
-    }
-  }
-  return;
+	unsigned char buffer[10000];
+	size_t bytes_total = data.size();
+
+	while (bytes_total < bytes_to_read) {
+		int s = select(READ);
+		if (s == 0)
+			goto timeout;
+		else if (s < 0)
+			goto error;
+		else { /* s > 0 */ }
+
+		size_t count = min((size_t)max(input_queue_length(), 0), sizeof(buffer));
+		ssize_t bytes_readed = ::read(fd, buffer, count);
+
+		if (bytes_readed > 0) {
+			data.insert(data.end(), &buffer[0], &buffer[bytes_readed]);
+			bytes_total += bytes_readed;
+		} else if (bytes_readed == 0) {
+			if (multiplexing == SELECT)
+				goto error;
+			/* Continue if multiplexing == SLEEP */
+		}	else { /* bytes_readed < 0 */
+			goto error;
+		}
+	}
+	return;
 error:
-  check_state(true);
-  sleep(tout);
+	check_state(true);
+	sleep(tout);
 timeout:
-  Tango::Except::throw_exception(
-    "", "Timeout expired", __PRETTY_FUNCTION__);
+	Tango::Except::throw_exception(
+			"", "Timeout expired", __PRETTY_FUNCTION__);
 }
 
 void Serial2::check_state(bool forcing)
@@ -983,10 +983,10 @@ int Serial2::select(event_type et)
 	int select_ret = ::select(fd + 1,	&readfds,
 			&writefds, &errorfds, &tout);
 
-  if (FD_ISSET(fd, &errorfds)) {
-    assert(false);
-    return -1;
-  }
+	if (FD_ISSET(fd, &errorfds)) {
+		assert(false);
+		return -1;
+	}
 
 	if (select_ret > 0) {
 		if (et == READ && FD_ISSET(fd, &readfds))
-- 
GitLab