list-objects-filter-options: make parser void
This function always returns 0, so make it return void instead.
Signed-off-by: Matthew DeVore <matvore@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff --git a/list-objects-filter-options.h b/list-objects-filter-options.h
index d8bc7e9..db37dfb 100644
--- a/list-objects-filter-options.h
+++ b/list-objects-filter-options.h
@@ -74,7 +74,7 @@ void list_objects_filter_die_if_populated(
*
* Dies and prints a user-facing message if an error occurs.
*/
-int parse_list_objects_filter(
+void parse_list_objects_filter(
struct list_objects_filter_options *filter_options,
const char *arg);