Skip to content

Commit e300aff

Browse files
Fixed missing parenthesis
1 parent ea8dfbe commit e300aff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqlite_miner.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ sub check_column_for_fun {
429429
$base_query .= "$column_name FROM $table_name ";
430430

431431
# Use the base query to loop over all the things we're looking for
432-
foreach $file_type (sort(keys(%fun_stuff))) {
432+
foreach $file_type (keys(%fun_stuff)) {
433433
my $tmp_query = $base_query . "WHERE hex($column_name) LIKE '".$fun_stuff{$file_type}{'regex'}."'";
434434

435435
# Build and execute query
@@ -718,7 +718,7 @@ sub extract_sqlite_from_android_backup {
718718

719719
# Clean up from any previous runs that error'd out
720720
if(-e $tmp_export_dir) {
721-
print_log_line_if($log_file_handle, "Deleting existing export directory left over from previous run\n", $very_verbose;
721+
print_log_line_if($log_file_handle, "Deleting existing export directory left over from previous run\n", $very_verbose);
722722
File::Path->remove_tree($tmp_export_dir);
723723
}
724724

0 commit comments

Comments
 (0)