From 71f9b8f8f85a8e554b141c9e3727e0ee4ebe3912 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Mon, 3 Feb 2025 12:27:50 +0100 Subject: [PATCH] Update esphome/components/mcp4461/mcp4461.cpp Co-authored-by: Djordje Mandic <6750655+DjordjeMandic@users.noreply.github.com> --- esphome/components/mcp4461/mcp4461.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 0d728fdf09..fdeb0e3e67 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -158,7 +158,7 @@ void Mcp4461Component::write_wiper_level_(uint8_t wiper, uint16_t value) { } void Mcp4461Component::enable_wiper(uint8_t wiper) { - ESP_LOGV(TAG, "Enabling wiper %d", wiper); + ESP_LOGV(TAG, "Enabling wiper %" PRIu8, wiper); this->reg_[wiper].terminal_hw = true; this->update_ = true; }