Navigation Menu

Skip to content

Commit

Permalink
Fix indent level
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jan 24, 2015
1 parent a62b954 commit 74f4543
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/ctx.c
Expand Up @@ -373,17 +373,17 @@ int grn_fmalloc_line = 0;
static void
grn_ctx_impl_init_malloc(grn_ctx *ctx)
{
# ifdef USE_FAIL_MALLOC
# ifdef USE_FAIL_MALLOC
ctx->impl->malloc_func = grn_malloc_fail;
ctx->impl->calloc_func = grn_calloc_fail;
ctx->impl->realloc_func = grn_realloc_fail;
ctx->impl->strdup_func = grn_strdup_fail;
# else
# else
ctx->impl->malloc_func = grn_malloc_default;
ctx->impl->calloc_func = grn_calloc_default;
ctx->impl->realloc_func = grn_realloc_default;
ctx->impl->strdup_func = grn_strdup_default;
# endif
# endif
}
#endif

Expand Down

0 comments on commit 74f4543

Please sign in to comment.