diff options
| author | 2024-08-22 10:26:43 +0100 | |
|---|---|---|
| committer | 2024-08-22 11:12:52 +0100 | |
| commit | 6b123d4bc61c2db8e379dd5e681834c4053e661d (patch) | |
| tree | 77621bb30f54b0c444e31a78b2c5c9a67955b723 /modules/spanningtree/fjoin.cpp | |
| parent | Merge branch 'insp4' into master. (diff) | |
Use C++20 <format> instead of fmtlib when available.
Diffstat (limited to 'modules/spanningtree/fjoin.cpp')
| -rw-r--r-- | modules/spanningtree/fjoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/spanningtree/fjoin.cpp b/modules/spanningtree/fjoin.cpp index b1dfa6fd9..dfe1dbd1b 100644 --- a/modules/spanningtree/fjoin.cpp +++ b/modules/spanningtree/fjoin.cpp @@ -278,7 +278,7 @@ void CommandFJoin::LowerTS(Channel* chan, time_t TS, const std::string& newname) if (Utils->AnnounceTSChange) { // WriteRemoteNotice is not used here because the message only needs to go to the local server. - chan->WriteNotice(fmt::format("Creation time of {} changed from {} to {}", newname, + chan->WriteNotice(FMT::format("Creation time of {} changed from {} to {}", newname, Time::ToString(chan->age), Time::ToString(TS))); } |
