diff options
author | Brandon Williams <bmwill@google.com> | 2017-05-09 12:17:58 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-10 14:47:36 +0900 |
commit | 2c3b40799fcdb9d2dedc90134e4f3841af08bbe7 (patch) | |
tree | e06075d888628a093c4a85d2d4d667fb0566bb98 /pathspec.c | |
parent | b06d3643105c8758ed019125a4399cb7efdcce2c (diff) | |
download | git-2c3b40799fcdb9d2dedc90134e4f3841af08bbe7.tar.gz |
pathspec: provide a more descriptive die message
The current message displayed upon an internal error in
'init_pathspec_item()' isn't very descriptive and doesn't provide much
context to where the error occurred. Update the error message to
provide more context to where the error occured.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pathspec.c')
-rw-r--r-- | pathspec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pathspec.c b/pathspec.c index 50f76fff45..904cfb7393 100644 --- a/pathspec.c +++ b/pathspec.c @@ -555,7 +555,7 @@ static void init_pathspec_item(struct pathspec_item *item, unsigned flags, * would trigger that. */ die_inside_submodule_path(item); - die ("BUG: item->nowildcard_len > item->len || item->prefix > item->len)"); + die ("BUG: error initializing pathspec_item"); } } |