Fix copy-paste mistake

This commit is contained in:
Charless Milette 2021-11-15 15:29:16 -05:00
parent 2d77ef92b0
commit 108c656e66

View File

@ -87,7 +87,7 @@ struct daily_filename_format_calculator
for (;;)
{
size_t size = buf.capacity() - start;
size_t count = details::fmt_helper:::strftime(&buf[start], size, &tm_format[0], &tm);
size_t count = details::fmt_helper::strftime(&buf[start], size, &tm_format[0], &tm);
if (count != 0)
{
// Remove the extra space.