Skip to content

Commit 5f13479

Browse files
Typo: "forked" process in log output. v7.0.30 (#4292)
--------- Co-authored-by: Haibo Chen <[email protected]> Co-authored-by: winlin <[email protected]> Co-authored-by: Haibo Chen <[email protected]>
1 parent e2461cd commit 5f13479

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

trunk/doc/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ The changelog for SRS.
77
<a name="v7-changes"></a>
88

99
## SRS 7.0 Changelog
10+
* v7.0, 2025-03-21, Merge [#4292](https://github.com/ossrs/srs/pull/4292): Typo: "forked" process in log output. v7.0.30 (#4292)
1011
* v7.0, 2025-03-21, Merge [#4294](https://github.com/ossrs/srs/pull/4294): Build: update build version to v7. v7.0.29 (#4294)
1112
* v7.0, 2025-03-21, Merge [#4303](https://github.com/ossrs/srs/pull/4303): replace values with enums. v7.0.28 (#4303)
1213
* v7.0, 2025-03-21, Merge [#4303](https://github.com/ossrs/srs/pull/4303): replace values with enums. v7.0.27 (#4303)

trunk/src/app/srs_app_process.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ srs_error_t SrsProcess::start()
251251
srs_usleep(10 * SRS_UTIME_MILLISECONDS);
252252

253253
is_started = true;
254-
srs_trace("fored process, pid=%d, bin=%s, stdout=%s, stderr=%s, argv=%s",
254+
srs_trace("forked process, pid=%d, bin=%s, stdout=%s, stderr=%s, argv=%s",
255255
pid, bin.c_str(), stdout_file.c_str(), stderr_file.c_str(), actual_cli.c_str());
256256
return err;
257257
}

trunk/src/core/srs_core_version7.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
#define VERSION_MAJOR 7
1111
#define VERSION_MINOR 0
12-
#define VERSION_REVISION 29
12+
#define VERSION_REVISION 30
1313

1414
#endif

0 commit comments

Comments
 (0)