diff options
author | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | 2010-02-12 16:50:33 +0000 |
---|---|---|
committer | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | 2010-02-28 20:09:45 +0000 |
commit | 1e5dd57214dbec1b166c881c1c44c8930923da17 (patch) | |
tree | 7f7103b840176225a27d40ff95c541ecaf74bb59 /src/git/commit.h | |
parent | 74eff33f8be680e821d9674ab12da3c0b76dad23 (diff) | |
download | libgit2-1e5dd57214dbec1b166c881c1c44c8930923da17.tar.gz |
Fix some coding style issues
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Diffstat (limited to 'src/git/commit.h')
-rw-r--r-- | src/git/commit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/git/commit.h b/src/git/commit.h index 979709bdb..010f258ae 100644 --- a/src/git/commit.h +++ b/src/git/commit.h @@ -25,14 +25,14 @@ typedef struct git_commit git_commit; * pool's git_odb, or if the commit is present but is * too malformed to be parsed successfully. */ -GIT_EXTERN(git_commit*) git_commit_parse(git_revpool *pool, const git_oid *id); +GIT_EXTERN(git_commit *) git_commit_parse(git_revpool *pool, const git_oid *id); /** * Get the id of a commit. * @param commit a previously parsed commit. * @return object identity for the commit. */ -GIT_EXTERN(const git_oid*) git_commit_id(git_commit *commit); +GIT_EXTERN(const git_oid *) git_commit_id(git_commit *commit); /** @} */ GIT_END_DECL |