Navigation Menu

Skip to content

Commit

Permalink
Use 64bit int type
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 19, 2015
1 parent c9cd6cb commit bd51c23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ctx.c
Expand Up @@ -2762,7 +2762,7 @@ grn_ctx_output_int32(grn_ctx *ctx, int value)
}

void
grn_ctx_output_int64(grn_ctx *ctx, long long int value)
grn_ctx_output_int64(grn_ctx *ctx, int64_t value)
{
grn_output_int64(ctx, ctx->impl->outbuf, ctx->impl->output_type, value);
}
Expand Down

0 comments on commit bd51c23

Please sign in to comment.