Skip to content

Commit

Permalink
chore: fix rust build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys committed Dec 11, 2023
1 parent b2a92f1 commit c92b9e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/llama-cpp-bindings/src/llama.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl LlamaServiceImpl {
};

for ffi::StepOutput { request_id, text } in result {
let mut stopped = false;
let mut stopped: bool;
let LlamaRunningRequest { tx, stop_condition } =
self.requests.get_mut(&request_id).unwrap();

Expand Down

0 comments on commit c92b9e1

Please sign in to comment.