Skip to content

Commit

Permalink
plugin-fts: Fix spelling mistakes
Browse files Browse the repository at this point in the history
Original work by @jsoref
  • Loading branch information
cmouse committed Nov 1, 2017
1 parent ed4bd0e commit 21bd357
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/plugins/fts/fts-expunge-log.c
Expand Up @@ -352,7 +352,7 @@ fts_expunge_log_write(struct fts_expunge_log_append_ctx *ctx)
return ret;
}

static int fts_expunge_log_append_finalise(struct fts_expunge_log_append_ctx **_ctx,
static int fts_expunge_log_append_finalize(struct fts_expunge_log_append_ctx **_ctx,
bool commit)
{
struct fts_expunge_log_append_ctx *ctx = *_ctx;
Expand Down Expand Up @@ -382,12 +382,12 @@ int fts_expunge_log_uid_count(struct fts_expunge_log *log,

int fts_expunge_log_append_commit(struct fts_expunge_log_append_ctx **_ctx)
{
return fts_expunge_log_append_finalise(_ctx, TRUE);
return fts_expunge_log_append_finalize(_ctx, TRUE);
}

int fts_expunge_log_append_abort(struct fts_expunge_log_append_ctx **_ctx)
{
return fts_expunge_log_append_finalise(_ctx, FALSE);
return fts_expunge_log_append_finalize(_ctx, FALSE);
}

struct fts_expunge_log_read_ctx *
Expand Down

0 comments on commit 21bd357

Please sign in to comment.