Skip to content

Commit

Permalink
fix: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrocarlo committed Feb 2, 2025
1 parent 6395842 commit c63cea2
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 @@ -1066,7 +1066,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 @@ -1790,7 +1790,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 c63cea2

Please sign in to comment.