Skip to content

Commit

Permalink
shouldn't return 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreycey Albin committed Apr 19, 2023
1 parent 4b8eeed commit 0fa1583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion facs/query.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ int bq_main (int argc, char **argv)
} //set default path, which is where the binary file is.
char *result = query(source, ref, tole_rate, sampling_rate, list, target_path, report_fmt, 'c');
printf("%s\n",result);
return 1;
return 0;
}

char *query (char *query, char *bloom_filter, double tole_rate, double sampling_rate, char *list, char *target_path, char *report_fmt, char mode)
Expand Down

0 comments on commit 0fa1583

Please sign in to comment.