summaryrefslogtreecommitdiff
path: root/tests/describe/describe_helpers.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-09-30 09:18:22 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2014-09-30 09:18:22 +0200
commit25345c0cbe1493d63bbc9d309d7fcf0f84df741b (patch)
treee3dd4d6de1067822ebe965be86be007f5f49f10a /tests/describe/describe_helpers.c
parent5431c46a9604ac5c5d17390013d3741196b41051 (diff)
downloadlibgit2-25345c0cbe1493d63bbc9d309d7fcf0f84df741b.tar.gz
describe: rename git_describe_opts to git_describe_options
And implement the option init functions for this and the format options.
Diffstat (limited to 'tests/describe/describe_helpers.c')
-rw-r--r--tests/describe/describe_helpers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/describe/describe_helpers.c b/tests/describe/describe_helpers.c
index e4dfcef3e..7a6a73cb8 100644
--- a/tests/describe/describe_helpers.c
+++ b/tests/describe/describe_helpers.c
@@ -4,7 +4,7 @@ void assert_describe(
const char *expected_output,
const char *revparse_spec,
git_repository *repo,
- git_describe_opts *opts,
+ git_describe_options *opts,
git_describe_format_options *fmt_opts)
{
git_object *object;
@@ -26,7 +26,7 @@ void assert_describe(
void assert_describe_workdir(
const char *expected_output,
git_repository *repo,
- git_describe_opts *opts,
+ git_describe_options *opts,
git_describe_format_options *fmt_opts)
{
git_buf label = GIT_BUF_INIT;