Commit c215be41 by Andreas Ericsson Committed by Shawn O. Pearce

Rename git_revpool_* functions gitrp_*

Otherwise their prototypes don't match their declarations.

Detected by 'sparse', which is obviously good to run
before each commit.

Signed-off-by: Andreas Ericsson <ae@op5.se>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
parent 3e1d42b7
...@@ -23,14 +23,9 @@ ...@@ -23,14 +23,9 @@
* Boston, MA 02110-1301, USA. * Boston, MA 02110-1301, USA.
*/ */
#include "git/revwalk.h" #include "revwalk.h"
#include <stdlib.h>
struct git_revpool { git_revpool *gitrp_alloc(git_odb *db)
git_odb *db;
};
git_revpool *git_revpool_alloc(git_odb *db)
{ {
git_revpool *walk = malloc(sizeof(*walk)); git_revpool *walk = malloc(sizeof(*walk));
if (!walk) if (!walk)
...@@ -40,7 +35,7 @@ git_revpool *git_revpool_alloc(git_odb *db) ...@@ -40,7 +35,7 @@ git_revpool *git_revpool_alloc(git_odb *db)
return walk; return walk;
} }
void git_revpool_free(git_revpool *walk) void gitrp_free(git_revpool *walk)
{ {
free(walk); free(walk);
} }
#ifndef INCLUDE_revwalk_h__
#define INCLUDE_revwalk_h__
#include "git/common.h"
#include "git/revwalk.h"
#include <stdlib.h>
struct git_revpool {
git_odb *db;
};
#endif /* INCLUDE_revwalk_h__ */
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