@@ -206,8 +206,8 @@ bool WebVideoServer::handle_stream(
206206        type = " mjpeg"  ;
207207      }
208208    }
209-     std::shared_ptr<ImageStreamer> streamer = stream_types_[type]->create_streamer (request, 
210-          connection, node_);
209+     std::shared_ptr<ImageStreamer> streamer = stream_types_[type]->create_streamer (
210+       request,  connection, node_);
211211    streamer->start ();
212212    std::scoped_lock lock (subscriber_mutex_);
213213    image_subscribers_.push_back (streamer);
@@ -223,8 +223,8 @@ bool WebVideoServer::handle_snapshot(
223223  async_web_server_cpp::HttpConnectionPtr connection, const  char  * begin,
224224  const  char  * end)
225225{
226-   std::shared_ptr<ImageStreamer> streamer = std::make_shared<JpegSnapshotStreamer>(request, 
227-        connection, node_);
226+   std::shared_ptr<ImageStreamer> streamer = std::make_shared<JpegSnapshotStreamer>(
227+     request,  connection, node_);
228228  streamer->start ();
229229
230230  std::scoped_lock lock (subscriber_mutex_);
@@ -321,7 +321,7 @@ bool WebVideoServer::handle_list_streams(
321321    " <head><title>ROS Image Topic List</title></head>" 
322322    " <body><h1>Available ROS Image Topics:</h1>"  );
323323  connection->write (" <ul>"  );
324-   for (std::string & camera_info_topic : camera_info_topics) {
324+   for   (std::string & camera_info_topic : camera_info_topics) {
325325    if  (boost::algorithm::ends_with (camera_info_topic, " /camera_info"  )) {
326326      std::string base_topic = camera_info_topic.substr (
327327        0 ,
0 commit comments