diff options
Diffstat (limited to 'src/handlers.rs')
-rw-r--r-- | src/handlers.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handlers.rs b/src/handlers.rs index 7e0310ed7..21e5b2baa 100644 --- a/src/handlers.rs +++ b/src/handlers.rs @@ -103,7 +103,7 @@ fn reply_error(d: *const DenoC, cmd_id: u32, msg: &String) { let mut builder = flatbuffers::FlatBufferBuilder::new(); // println!("reply_error{}", msg); let args = msg::BaseArgs { - cmdId: cmd_id, + cmd_id: cmd_id, error: Some(builder.create_string(msg)), ..Default::default() }; |