Skip to content

Commit

Permalink
Fix issue from cherry-pick
Browse files Browse the repository at this point in the history
Required-githooks: true

Change-Id: Id41f790cb44723ef65955a6513bc3dddb7057ad2
Signed-off-by: Jeff Olivier <[email protected]>
  • Loading branch information
jolivier23 committed May 28, 2024
1 parent 436e5bd commit 91b1a7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/btree.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* (C) Copyright 2016-2023 Intel Corporation.
* (C) Copyright 2016-2024 Intel Corporation.
*
* SPDX-License-Identifier: BSD-2-Clause-Patent
*/
Expand Down Expand Up @@ -1994,7 +1994,7 @@ btr_update(struct btr_context *tcx, d_iov_t *key, d_iov_t *val, d_iov_t *val_out
struct btr_record *rec;
int rc;
char sbuf[BTR_PRINT_BUF];
struct btr_trace *trace = &tcx->tc_trace.ti_trace[tcx->tc_depth - 1];
struct btr_trace *trace = &tcx->tc_trace[tcx->tc_depth - 1];

rec = btr_trace2rec(tcx, tcx->tc_depth - 1);

Expand Down

0 comments on commit 91b1a7e

Please sign in to comment.