diff options
author | lhchavez <lhchavez@lhchavez.com> | 2021-08-26 05:29:34 -0700 |
---|---|---|
committer | lhchavez <lhchavez@lhchavez.com> | 2021-08-26 05:29:34 -0700 |
commit | 63f08e4258122d6f6ea1f04ec8c08779bf300b6c (patch) | |
tree | 36375d662c59faa07a647e697bc4c9150b642dda /src/commit_graph.c | |
parent | 2988f7367cda7337e2b293fb12814d272ef9c33b (diff) | |
download | libgit2-63f08e4258122d6f6ea1f04ec8c08779bf300b6c.tar.gz |
Make the defaultable fields defaultable
Also, add `git_commit_graph_writer_options_init`!
Diffstat (limited to 'src/commit_graph.c')
-rw-r--r-- | src/commit_graph.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/commit_graph.c b/src/commit_graph.c index 78ab436d6..1601c630c 100644 --- a/src/commit_graph.c +++ b/src/commit_graph.c @@ -1143,6 +1143,18 @@ static int commit_graph_write_filebuf(const char *buf, size_t size, void *data) return git_filebuf_write(f, buf, size); } +int git_commit_graph_writer_options_init( + git_commit_graph_writer_options *opts, + unsigned int version) +{ + GIT_INIT_STRUCTURE_FROM_TEMPLATE( + opts, + version, + git_commit_graph_writer_options, + GIT_COMMIT_GRAPH_WRITER_OPTIONS_INIT); + return 0; +} + int git_commit_graph_writer_commit( git_commit_graph_writer *w, git_commit_graph_writer_options *opts) @@ -1152,7 +1164,7 @@ int git_commit_graph_writer_commit( git_buf commit_graph_path = GIT_BUF_INIT; git_filebuf output = GIT_FILEBUF_INIT; - /* TODO: support options. */ + /* TODO: support options and fill in defaults. */ GIT_UNUSED(opts); error = git_buf_joinpath( |