diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-11-25 15:24:52 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-11-25 15:24:53 -0800 |
commit | b5b71cbd5dd2a811bd2ddd0b88da1c337c02bb3c (patch) | |
tree | 45fd01ac7f4120f85fe12e388a66b27dc9d088a2 | |
parent | d627bf6039ac3db5600cb76c738c13bb6e8204d0 (diff) | |
parent | 5a923bb1f0f1ba01f8845dd7dc78bb354e8c79bc (diff) | |
download | git-b5b71cbd5dd2a811bd2ddd0b88da1c337c02bb3c.tar.gz |
Merge branch 'ma/list-object-filter-opt-msgfix'
Error message fix.
* ma/list-object-filter-opt-msgfix:
list-objects-filter-options: fix function name in BUG
-rw-r--r-- | list-objects-filter-options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/list-objects-filter-options.c b/list-objects-filter-options.c index defd3dfd10..d2d1c81caf 100644 --- a/list-objects-filter-options.c +++ b/list-objects-filter-options.c @@ -35,7 +35,7 @@ const char *list_object_filter_config_name(enum list_objects_filter_choice c) /* not a real filter type; just the count of all filters */ break; } - BUG("list_object_filter_choice_name: invalid argument '%d'", c); + BUG("list_object_filter_config_name: invalid argument '%d'", c); } /* |