fix append bug in DumpDBFileSummary()

This commit is contained in:
qinzuoyan 2015-07-16 12:02:03 +08:00
parent 43e9825625
commit 84c3577af9

View File

@ -65,7 +65,7 @@ void DumpDBFileSummary(const DBOptions& options, const std::string& dbname) {
char str[8];
snprintf(str, sizeof(str), "%" PRIu64, file_size);
wal_info.append(file).append(" size: ").
append(str, sizeof(str)).append(" ;");
append(str).append(" ; ");
break;
case kTableFile:
if (++file_num < 10) {
@ -118,7 +118,7 @@ void DumpDBFileSummary(const DBOptions& options, const std::string& dbname) {
char str[8];
snprintf(str, sizeof(str), "%" PRIu64, file_size);
wal_info.append(file).append(" size: ").
append(str, sizeof(str)).append(" ;");
append(str).append(" ; ");
}
}
}