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/revwalk.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/revwalk.h')
-rw-r--r-- | src/git/revwalk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/git/revwalk.h b/src/git/revwalk.h index efaa4277c..5fac2a68a 100644 --- a/src/git/revwalk.h +++ b/src/git/revwalk.h @@ -25,7 +25,7 @@ GIT_BEGIN_DECL * @param db the database objects are read from. * @return the new traversal handle; NULL if memory is exhausted. */ -GIT_EXTERN(git_revpool*) gitrp_alloc(git_odb *db); +GIT_EXTERN(git_revpool *) gitrp_alloc(git_odb *db); /** * Reset the traversal machinary for reuse. @@ -52,7 +52,7 @@ GIT_EXTERN(void) gitrp_hide(git_revpool *pool, git_commit *commit); * @param pool the pool to pop the commit from. * @return next commit; NULL if there is no more output. */ -GIT_EXTERN(git_commit*) gitrp_next(git_revpool *pool); +GIT_EXTERN(git_commit *) gitrp_next(git_revpool *pool); /** * Free a revwalk previously allocated. |