Fix: shorten stream sink thread name to satisfy 15-char limit

Co-authored-by: yeicor <4929005+yeicor@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-03-13 08:43:31 +00:00
parent d4e458370d
commit 2fcba7e5b3

View file

@ -719,7 +719,7 @@ error_mutex_destroy:
bool
sc_stream_sink_start(struct sc_stream_sink *sink) {
bool ok = sc_thread_create(&sink->thread, run_stream_sink,
"scrcpy-stream-sink", sink);
"scrcpy-stream", sink);
if (!ok) {
LOGE("Could not start stream sink thread");
return false;