mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 07:26:29 -04:00
Port reorganized as a metaport. Each component can be installed separately or selected as an option via the metaport. Components were moved to net-p2p/transmission-components. See MOVED for additional information. Also fixes log-level typo in rc file and description errors PR: 273841, 274054 274065 Reported by: Anton Saietskii <vsasjason@gmail.com> Reported by: Matt <lazeraman@gmail.com> Reported by: Benjamin Takacs <nimaje+fbz@bureaucracy.de> Differential Revision: https://reviews.freebsd.org/D41975
11 lines
472 B
C++
11 lines
472 B
C++
--- libtransmission/file-posix.cc.orig 2023-09-19 12:13:51 UTC
|
|
+++ libtransmission/file-posix.cc
|
|
@@ -556,7 +556,7 @@ tr_sys_file_t tr_sys_file_get_std(tr_std_sys_file_t st
|
|
break;
|
|
|
|
default:
|
|
- TR_ASSERT_MSG(false, fmt::format(FMT_STRING("unknown standard file {:d}"), std_file));
|
|
+ TR_ASSERT_MSG(false, fmt::format(FMT_STRING("unknown standard file {:d}"), static_cast<int>(std_file)));
|
|
tr_error_set_from_errno(error, EINVAL);
|
|
}
|
|
|