Navigation Menu

Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jan 17, 2015
1 parent 30b2667 commit 65dc39b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pgroonga.c
Expand Up @@ -907,7 +907,7 @@ pgroonga_build(PG_FUNCTION_ARGS)
GrnCreate(index, &(bs.idsTable), &lexicon, &indexColumn);
{
unsigned long long int updateBufferSize = 10;
bs.buffer = grn_ii_buffer_open(ctx, (grn_ii *)indexColumn,
bs.buffer = grn_ii_buffer_open(ctx, (grn_ii *) indexColumn,
updateBufferSize);
}
nHeapTuples = IndexBuildHeapScan(heap, index, indexInfo, true,
Expand Down Expand Up @@ -993,7 +993,7 @@ pgroonga_bulkdelete(PG_FUNCTION_ARGS)

CHECK_FOR_INTERRUPTS();

grn_table_cursor_get_key(ctx, cursor, (void **)&key);
grn_table_cursor_get_key(ctx, cursor, (void **) &key);
ctid = UInt64ToCtid(key);
if (callback(&ctid, callback_state))
{
Expand Down

0 comments on commit 65dc39b

Please sign in to comment.