From 4c4fe359b104027b0edd2c74f89ffcecbe43b1fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Ag=C3=BCero?= Date: Mon, 2 Dec 2024 22:33:06 +0100 Subject: [PATCH] Replace systemTimeISO with systemTimeIso (#2691) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carlos Agüero --- src/systems/camera_video_recorder/CameraVideoRecorder.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systems/camera_video_recorder/CameraVideoRecorder.cc b/src/systems/camera_video_recorder/CameraVideoRecorder.cc index d03d051b93..f4e7ade403 100644 --- a/src/systems/camera_video_recorder/CameraVideoRecorder.cc +++ b/src/systems/camera_video_recorder/CameraVideoRecorder.cc @@ -183,7 +183,7 @@ bool CameraVideoRecorderPrivate::OnRecordVideo(const msgs::VideoRecord &_msg, // create filename with timestamped suffix if path is not specified if (this->recordVideoSavePath.empty()) { - std::string str = common::systemTimeISO(); + std::string str = common::systemTimeIso(); std::string prefix = this->cameraName; prefix = std::regex_replace(prefix, std::regex("::"), "_"); this->recordVideoSavePath = prefix + "_" + str + "." +