From a1fc036e252ab5f000ee4bb3d5082eca1e7bd56c Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 24 Apr 2025 07:53:05 -0400 Subject: [PATCH] Fix typo in src/timer.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timer.cpp b/src/timer.cpp index 219cad20b4..c8869039e4 100644 --- a/src/timer.cpp +++ b/src/timer.cpp @@ -269,7 +269,7 @@ void Timer::modify_params(int narg, char **arg) #if defined(FMT_STATIC_THOUSANDS_SEPARATOR) char outstr[200]; struct tm *tv = gmtime(&((time_t) _timeout)); - strftime(outstr, 200, "%02d:%M:%S", tv) + strftime(outstr, 200, "%02d:%M:%S", tv); timeout = outstr; #else std::tm tv = fmt::gmtime((std::time_t) _timeout);