From 00238bb9a93bf6afd1968aeaab69a2132ced8aef Mon Sep 17 00:00:00 2001 From: Lukas <89481353+Lukas-Kaufmann@users.noreply.github.com> Date: Mon, 17 Feb 2025 12:52:47 +0100 Subject: [PATCH] fix typo in log output --- trunk/src/app/srs_app_process.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/src/app/srs_app_process.cpp b/trunk/src/app/srs_app_process.cpp index 4a5dc5f0e..8bc8ec6f6 100644 --- a/trunk/src/app/srs_app_process.cpp +++ b/trunk/src/app/srs_app_process.cpp @@ -251,7 +251,7 @@ srs_error_t SrsProcess::start() srs_usleep(10 * SRS_UTIME_MILLISECONDS); is_started = true; - srs_trace("fored process, pid=%d, bin=%s, stdout=%s, stderr=%s, argv=%s", + srs_trace("forked process, pid=%d, bin=%s, stdout=%s, stderr=%s, argv=%s", pid, bin.c_str(), stdout_file.c_str(), stderr_file.c_str(), actual_cli.c_str()); return err; }