aboutsummaryrefslogtreecommitdiff
path: root/swaystatus-plugin/src
diff options
context:
space:
mode:
authorAndreas Grois <andi@grois.info>2021-11-29 22:41:08 +0100
committerAndreas Grois <andi@grois.info>2021-11-29 22:41:08 +0100
commit74d3f3420e439d0697de1563b1860f062731729e (patch)
tree4d21afb3bcabe4f5bda9acdd451ef7eb3cb5bdb2 /swaystatus-plugin/src
parent6277f4351fd68f1cdd434818eac7b0d18eac3c76 (diff)
Update Rust edition to 2021
Diffstat (limited to 'swaystatus-plugin/src')
-rw-r--r--swaystatus-plugin/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/swaystatus-plugin/src/lib.rs b/swaystatus-plugin/src/lib.rs
index 8a632cf..e54e057 100644
--- a/swaystatus-plugin/src/lib.rs
+++ b/swaystatus-plugin/src/lib.rs
@@ -60,7 +60,7 @@ macro_rules! declare_swaystatus_module {
// make sure the constructor is the correct type.
let constructor: fn() -> $plugin_type = $constructor;
let object = constructor();
- let boxed: Box<$crate::SwayStatusModule> = Box::new(object);
+ let boxed: Box<dyn $crate::SwayStatusModule> = Box::new(object);
Box::into_raw(boxed)
}
#[no_mangle]