summaryrefslogtreecommitdiff
path: root/src/core/commands.rs
diff options
context:
space:
mode:
authortaitep <taitep@taitep.se>2025-12-27 11:55:19 +0100
committertaitep <taitep@taitep.se>2025-12-27 11:55:19 +0100
commit67406a9c48477d0fce8a5df2c4e8d902a698e8e8 (patch)
tree090777e06ad536a4f5e9e2333b79ae584ec4f472 /src/core/commands.rs
parent9f8e9ec380ad679fe714222345a46ebf77d063d6 (diff)
Fix some warnings
Diffstat (limited to 'src/core/commands.rs')
-rw-r--r--src/core/commands.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/commands.rs b/src/core/commands.rs
index 93bdd1e..3fe913b 100644
--- a/src/core/commands.rs
+++ b/src/core/commands.rs
@@ -1,7 +1,5 @@
-use std::sync::mpsc;
-
use crate::gdb;
pub enum CoreCmd {
- EnterDbgMode(mpsc::Receiver<gdb::DebugCommand>),
+ EnterDbgMode(gdb::DebugStream),
}