diff options
| author | Patrick Steinhardt <ps@pks.im> | 2018-02-08 11:14:48 +0000 |
|---|---|---|
| committer | Patrick Steinhardt <ps@pks.im> | 2018-06-10 19:34:37 +0200 |
| commit | ecf4f33a4e327a91496f72816f9f02d923e5af05 (patch) | |
| tree | bb8eccc9ab0dc8f36a702c8a15ad5ae92429ee07 /examples/diff.c | |
| parent | 56ffdfc61e37b9e7634c7c73b05d84355bea61cd (diff) | |
| download | libgit2-ecf4f33a4e327a91496f72816f9f02d923e5af05.tar.gz | |
Convert usage of `git_buf_free` to new `git_buf_dispose`
Diffstat (limited to 'examples/diff.c')
| -rw-r--r-- | examples/diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/diff.c b/examples/diff.c index 9a4f7a59f..1de0483a3 100644 --- a/examples/diff.c +++ b/examples/diff.c @@ -332,6 +332,6 @@ static void diff_print_stats(git_diff *diff, struct opts *o) fputs(b.ptr, stdout); - git_buf_free(&b); + git_buf_dispose(&b); git_diff_stats_free(stats); } |
