From 019451babc76aad9817797ae37c7038e996de814 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20MARQUET?= Date: Wed, 24 Apr 2024 16:50:01 +0200 Subject: [PATCH] Fix point bad naming --- TCPServer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TCPServer.cpp b/TCPServer.cpp index 901cf63..616da59 100644 --- a/TCPServer.cpp +++ b/TCPServer.cpp @@ -89,8 +89,8 @@ TCPServer::TCPServer(int port) ClientTCP servo_moteur; servo_moteur.name = "servo_moteur"; - ClientTCP points; - points.name = "points"; + ClientTCP point; + point.name = "point"; clients.push_back(tirette); clients.push_back(aruco); @@ -98,7 +98,7 @@ TCPServer::TCPServer(int port) clients.push_back(lidar); clients.push_back(arduino); clients.push_back(servo_moteur); - clients.push_back(points); + clients.push_back(point); } void TCPServer::acceptConnections()