Skip to content

Commit

Permalink
dump: fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jul 14, 2017
1 parent 4076ba1 commit cebf2c8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/proc/proc_dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -682,8 +682,9 @@ dump_records(grn_ctx *ctx, grn_dumper *dumper, grn_obj *table)
}
grn_table_cursor_close(ctx, cursor);
GRN_TEXT_PUTS(ctx, dumper->output, "\n]\n");
GRN_TEXT_PUT(ctx, dumper->output, GRN_TEXT_VALUE(&delete_commands),
GRN_TEXT_LEN(&delete_commands));
GRN_TEXT_PUT(ctx, dumper->output,
GRN_TEXT_VALUE(&delete_commands),
GRN_TEXT_LEN(&delete_commands));
GRN_OBJ_FIN(ctx, &delete_commands);
}
exit :
Expand Down

0 comments on commit cebf2c8

Please sign in to comment.