Skip to content

Commit a79a4e7

Browse files
committed
fix format.
1 parent 0297161 commit a79a4e7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

cpp/src/common/tablet.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ class Tablet {
6262
sizeof(uint32_t) * (max_rows + 1), common::MOD_DEFAULT);
6363
offsets[0] = 0;
6464
buf_capacity = init_buf_capacity;
65-
buffer = (char*)common::mem_alloc(buf_capacity, common::MOD_DEFAULT);
65+
buffer =
66+
(char*)common::mem_alloc(buf_capacity, common::MOD_DEFAULT);
6667
buf_used = 0;
6768
}
6869

0 commit comments

Comments
 (0)