mirror of
https://git.freebsd.org/ports.git
synced 2025-05-29 01:16:28 -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
456 B
C++
11 lines
456 B
C++
--- gtk/Application.cc.orig 2023-09-19 12:12:08 UTC
|
|
+++ gtk/Application.cc
|
|
@@ -395,7 +395,7 @@ void register_magnet_link_handler()
|
|
_("Couldn't register Transmission as a {content_type} handler: {error} ({error_code})"),
|
|
fmt::arg("content_type", content_type),
|
|
fmt::arg("error", e.what()),
|
|
- fmt::arg("error_code", e.code())));
|
|
+ fmt::arg("error_code", static_cast<int>(e.code()))));
|
|
}
|
|
}
|
|
|