summaryrefslogtreecommitdiffstats
path: root/src/plugin.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugin.rs')
-rw-r--r--src/plugin.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugin.rs b/src/plugin.rs
index a67d68f..f33fa80 100644
--- a/src/plugin.rs
+++ b/src/plugin.rs
@@ -11,7 +11,7 @@ pub enum ExecutionStatus {
/// The [`Plugin`](trait.Plugin.html) does not need to do any more work on this [`Message`](../../irc/proto/message/struct.Message.html).
Done,
/// An error occured during the execution.
- Err(IrcError),
+ Err(Box<IrcError>),
/// The execution needs to be done by [`execute_threaded()`](trait.Plugin.html#tymethod.execute_threaded).
RequiresThread,
}