Skip to content

Commit

Permalink
fix: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrocarlo committed Jan 21, 2025
1 parent 6f5f20c commit 9435c86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/translate/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ pub fn translate_expr(

translate_function(
program,
&args,
args,
referenced_tables,
resolver,
target_register,
Expand Down
2 changes: 1 addition & 1 deletion core/vdbe/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1701,7 +1701,7 @@ impl Program {
}
JsonFunc::JsonQuote => {
let json_value = &state.registers[*start_reg];

match json_quote(json_value) {
Ok(result) => state.registers[*dest] = result,
Err(e) => return Err(e),
Expand Down

0 comments on commit 9435c86

Please sign in to comment.