From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-f193.google.com (mail-lj1-f193.google.com [209.85.208.193]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 20DDD4696C6 for ; Mon, 17 Feb 2020 19:00:31 +0300 (MSK) Received: by mail-lj1-f193.google.com with SMTP id h23so19440482ljc.8 for ; Mon, 17 Feb 2020 08:00:31 -0800 (PST) From: Cyrill Gorcunov Date: Mon, 17 Feb 2020 18:59:52 +0300 Message-Id: <20200217155953.25803-4-gorcunov@gmail.com> In-Reply-To: <20200217155953.25803-1-gorcunov@gmail.com> References: <20200217155953.25803-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 3/4] box/txn: rename txn_entry_done_cb to txn_entry_complete_cb List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tml To look similar to txn_complete. Signed-off-by: Cyrill Gorcunov --- src/box/txn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/box/txn.c b/src/box/txn.c index 5dadf4985..a4ca48224 100644 --- a/src/box/txn.c +++ b/src/box/txn.c @@ -469,7 +469,7 @@ txn_complete(struct txn *txn) } static void -txn_entry_done_cb(struct journal_entry *entry, void *data) +txn_entry_complete_cb(struct journal_entry *entry, void *data) { struct txn *txn = data; txn->signature = entry->res; @@ -493,7 +493,7 @@ txn_write_to_wal(struct txn *txn) struct journal_entry *req = journal_entry_new(txn->n_new_rows + txn->n_applier_rows, &txn->region, - txn_entry_done_cb, + txn_entry_complete_cb, txn); if (req == NULL) { txn_rollback(txn); -- 2.20.1