From 8c34d5afe2c67a8940d974218eff927da73e39c7 Mon Sep 17 00:00:00 2001 From: veclavtalica Date: Tue, 1 Oct 2024 12:59:40 +0300 Subject: [PATCH] twn_audio: capitalize warn --- src/twn_audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/twn_audio.c b/src/twn_audio.c index 08b6ce0..630a959 100644 --- a/src/twn_audio.c +++ b/src/twn_audio.c @@ -317,7 +317,7 @@ static void sanity_check_channel(const AudioChannel *channel) { log_warn("Volume argument is out of range for channel (%s)", channel->name); if (channel->args.panning < -1.0f || channel->args.panning > 1.0f) - log_warn("panning argument is out of range for channel (%s)", channel->name); + log_warn("Panning argument is out of range for channel (%s)", channel->name); }