mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-12-23 17:28:56 +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;
|
S3fsLog::s3fs_log_level S3fsLog::debug_level = S3fsLog::LEVEL_CRIT;
|
||||||
FILE* S3fsLog::logfp = NULL;
|
FILE* S3fsLog::logfp = NULL;
|
||||||
std::string* S3fsLog::plogfile = NULL;
|
std::string* S3fsLog::plogfile = NULL;
|
||||||
char S3fsLog::current_time[32] = "";
|
char S3fsLog::current_time[64] = "";
|
||||||
|
|
||||||
//-------------------------------------------------------------------
|
//-------------------------------------------------------------------
|
||||||
// S3fsLog class : class methods
|
// S3fsLog class : class methods
|
||||||
|
@ -47,7 +47,7 @@ class S3fsLog
|
|||||||
static s3fs_log_level debug_level;
|
static s3fs_log_level debug_level;
|
||||||
static FILE* logfp;
|
static FILE* logfp;
|
||||||
static std::string* plogfile;
|
static std::string* plogfile;
|
||||||
static char current_time[32];
|
static char current_time[64];
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
bool LowLoadEnv();
|
bool LowLoadEnv();
|
||||||
|
Loading…
Reference in New Issue
Block a user