mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-03 17:48:17 +00:00
cli: Fix unused result warnings
This commit is contained in:
parent
be481fc2cb
commit
75992a84d8
1 changed files with 4 additions and 4 deletions
|
@ -526,7 +526,7 @@ impl Limbo {
|
|||
break;
|
||||
}
|
||||
Ok(StepResult::Busy) => {
|
||||
self.writeln("database is busy");
|
||||
let _ = self.writeln("database is busy");
|
||||
break;
|
||||
}
|
||||
Err(err) => {
|
||||
|
@ -565,7 +565,7 @@ impl Limbo {
|
|||
Ok(StepResult::Interrupt) => break,
|
||||
Ok(StepResult::Done) => break,
|
||||
Ok(StepResult::Busy) => {
|
||||
self.writeln("database is busy");
|
||||
let _ = self.writeln("database is busy");
|
||||
break;
|
||||
}
|
||||
Err(err) => {
|
||||
|
@ -619,7 +619,7 @@ impl Limbo {
|
|||
StepResult::Interrupt => break,
|
||||
StepResult::Done => break,
|
||||
StepResult::Busy => {
|
||||
self.writeln("database is busy");
|
||||
let _ = self.writeln("database is busy");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -676,7 +676,7 @@ impl Limbo {
|
|||
StepResult::Interrupt => break,
|
||||
StepResult::Done => break,
|
||||
StepResult::Busy => {
|
||||
self.writeln("database is busy");
|
||||
let _ = self.writeln("database is busy");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue