diff --git a/core/translate/main_loop.rs b/core/translate/main_loop.rs index 5215cbdd3..5e422442b 100644 --- a/core/translate/main_loop.rs +++ b/core/translate/main_loop.rs @@ -577,7 +577,7 @@ pub fn open_loop( } else { false }; - Some(emit_autoindex( + let _ = emit_autoindex( program, index, table_cursor_id.expect( @@ -586,7 +586,7 @@ pub fn open_loop( index_cursor_id .expect("an ephemeral index must have an index cursor"), table_has_rowid, - )?); + )?; } }