Commit 8572e225 by Patrick Steinhardt

examples: general: clean up committer/author variables

parent ffe259d9
...@@ -264,7 +264,7 @@ static void commit_writing(git_repository *repo) ...@@ -264,7 +264,7 @@ static void commit_writing(git_repository *repo)
git_oid tree_id, parent_id, commit_id; git_oid tree_id, parent_id, commit_id;
git_tree *tree; git_tree *tree;
git_commit *parent; git_commit *parent;
const git_signature *author, *cmtter; git_signature *author, *committer;
char oid_hex[GIT_OID_HEXSZ+1] = { 0 }; char oid_hex[GIT_OID_HEXSZ+1] = { 0 };
printf("\n*Commit Writing*\n"); printf("\n*Commit Writing*\n");
...@@ -276,9 +276,9 @@ static void commit_writing(git_repository *repo) ...@@ -276,9 +276,9 @@ static void commit_writing(git_repository *repo)
* `user.email` configuration options. See the `config` section of this * `user.email` configuration options. See the `config` section of this
* example file to see how to access config values. * example file to see how to access config values.
*/ */
git_signature_new((git_signature **)&author, git_signature_new(&author,
"Scott Chacon", "schacon@gmail.com", 123456789, 60); "Scott Chacon", "schacon@gmail.com", 123456789, 60);
git_signature_new((git_signature **)&cmtter, git_signature_new(&committer,
"Scott A Chacon", "scott@github.com", 987654321, 90); "Scott A Chacon", "scott@github.com", 987654321, 90);
/** /**
...@@ -301,7 +301,7 @@ static void commit_writing(git_repository *repo) ...@@ -301,7 +301,7 @@ static void commit_writing(git_repository *repo)
repo, repo,
NULL, /* do not update the HEAD */ NULL, /* do not update the HEAD */
author, author,
cmtter, committer,
NULL, /* use default message encoding */ NULL, /* use default message encoding */
"example commit", "example commit",
tree, tree,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment