--- qt-everywhere-src-6.8.3/qtmultimedia/src/multimedia/pulseaudio/qpulsehelpers_p.h.orig 2025-08-20 07:08:43.212967174 +0200 +++ qt-everywhere-src-6.8.3/qtmultimedia/src/multimedia/pulseaudio/qpulsehelpers_p.h 2025-08-20 07:06:57.792634711 +0200 @@ -69,8 +69,8 @@ QAudioFormat sampleSpecToAudioFormat(con pa_channel_map channelMapForAudioFormat(const QAudioFormat &format); QAudioFormat::ChannelConfig channelConfigFromMap(const pa_channel_map &map); -QUtf8StringView currentError(const pa_context *); -QUtf8StringView currentError(const pa_stream *); +QUtf8StringView currentError(pa_context *); +QUtf8StringView currentError(pa_stream *); } // namespace QPulseAudioInternal --- qt-everywhere-src-6.8.3/qtmultimedia/src/multimedia/pulseaudio/qpulsehelpers.cpp.orig 2025-08-20 07:09:06.808041623 +0200 +++ qt-everywhere-src-6.8.3/qtmultimedia/src/multimedia/pulseaudio/qpulsehelpers.cpp 2025-08-20 07:05:39.981389461 +0200 @@ -199,12 +199,12 @@ QAudioFormat sampleSpecToAudioFormat(con return format; } -QUtf8StringView currentError(const pa_context *context) +QUtf8StringView currentError(pa_context *context) { return pa_strerror(pa_context_errno(context)); } -QUtf8StringView currentError(const pa_stream *stream) +QUtf8StringView currentError(pa_stream *stream) { return currentError(pa_stream_get_context(stream)); }