mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-29 01:29:35 +08:00
Fix incorrect string type for fopen_s.
This commit is contained in:
@@ -66,7 +66,7 @@ public:
|
|||||||
{
|
{
|
||||||
|
|
||||||
close();
|
close();
|
||||||
tchar* mode = truncate ? S("wb") : S("ab");
|
const tchar* mode = truncate ? S("wb") : S("ab");
|
||||||
_filename = fname;
|
_filename = fname;
|
||||||
for (int tries = 0; tries < open_tries; ++tries)
|
for (int tries = 0; tries < open_tries; ++tries)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user