diff options
author | Christian Hopps <chopps@labn.net> | 2023-03-21 00:28:42 +0100 |
---|---|---|
committer | Christian Hopps <chopps@gmail.com> | 2023-03-22 06:22:56 +0100 |
commit | 0b645fd2168d977878b1cf0d14eff3755ca66e05 (patch) | |
tree | 18b64f967378efb5ce65016cebb4931003e9552e /mgmtd/mgmt_txn.c | |
parent | tests: apply frrbot style requirements (diff) | |
download | frr-0b645fd2168d977878b1cf0d14eff3755ca66e05.tar.xz frr-0b645fd2168d977878b1cf0d14eff3755ca66e05.zip |
lib: mgmtd: fix build warnings (as error)
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'mgmtd/mgmt_txn.c')
-rw-r--r-- | mgmtd/mgmt_txn.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mgmtd/mgmt_txn.c b/mgmtd/mgmt_txn.c index 3a3043421..7ae720bc5 100644 --- a/mgmtd/mgmt_txn.c +++ b/mgmtd/mgmt_txn.c @@ -2476,7 +2476,8 @@ int mgmt_txn_notify_be_adapter_conn(struct mgmt_be_client_adapter *adapter, return -1; } - MGMTD_TXN_DBG("Created initial txn %llu for BE connection %s", + MGMTD_TXN_DBG("Created initial txn %" PRIu64 + " for BE connection %s", txn->txn_id, adapter->name); /* * Set the changeset for transaction to commit and trigger the @@ -2815,7 +2816,7 @@ int mgmt_txn_rollback_trigger_cfg_apply(struct mgmt_ds_ctx *src_ds_ctx, return -1; } - MGMTD_TXN_DBG("Created rollback txn %llu", txn->txn_id); + MGMTD_TXN_DBG("Created rollback txn %" PRIu64, txn->txn_id); /* * Set the changeset for transaction to commit and trigger the commit |