Skip to content

Commit 7d81cd0

Browse files
committed
Fix indentation
1 parent 65e833d commit 7d81cd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ Cursor* leaf_node_find(Table* table, uint32_t page_num, uint32_t key) {
350350
Cursor* cursor = malloc(sizeof(Cursor));
351351
cursor->table = table;
352352
cursor->page_num = page_num;
353-
cursor->end_of_table = false;
353+
cursor->end_of_table = false;
354354

355355
// Binary search
356356
uint32_t min_index = 0;

0 commit comments

Comments
 (0)