mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-12-23 01:08:54 +00:00
Increase buffer size to avoid warning (#1550)
This can be up to 54 bytes. Co-authored-by: Takeshi Nakatani <ggtakec@gmail.com>
This commit is contained in:
parent
ff9d6a75c7
commit
bf33fe7f55
@ -34,7 +34,7 @@ S3fsLog* S3fsLog::pSingleton = NULL;
|
||||
S3fsLog::s3fs_log_level S3fsLog::debug_level = S3fsLog::LEVEL_CRIT;
|
||||
FILE* S3fsLog::logfp = NULL;
|
||||
std::string* S3fsLog::plogfile = NULL;
|
||||
char S3fsLog::current_time[32] = "";
|
||||
char S3fsLog::current_time[64] = "";
|
||||
|
||||
//-------------------------------------------------------------------
|
||||
// S3fsLog class : class methods
|
||||
|
@ -47,7 +47,7 @@ class S3fsLog
|
||||
static s3fs_log_level debug_level;
|
||||
static FILE* logfp;
|
||||
static std::string* plogfile;
|
||||
static char current_time[32];
|
||||
static char current_time[64];
|
||||
|
||||
protected:
|
||||
bool LowLoadEnv();
|
||||
|
Loading…
Reference in New Issue
Block a user