From 2fcba7e5b3f5435fa76cd4d4359bf09c042bf767 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Mar 2026 08:43:31 +0000 Subject: [PATCH] Fix: shorten stream sink thread name to satisfy 15-char limit Co-authored-by: yeicor <4929005+yeicor@users.noreply.github.com> --- app/src/stream_sink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/stream_sink.c b/app/src/stream_sink.c index 58d02669..fc72c7ab 100644 --- a/app/src/stream_sink.c +++ b/app/src/stream_sink.c @@ -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;