Commit 869320a8 by Edward Thomson

Merge pull request #3546 from Cruel/master

Fix a couple function signatures
parents 3d29b12c 95746a57
...@@ -68,7 +68,7 @@ GIT_EXTERN(int) git_stash_save( ...@@ -68,7 +68,7 @@ GIT_EXTERN(int) git_stash_save(
git_repository *repo, git_repository *repo,
const git_signature *stasher, const git_signature *stasher,
const char *message, const char *message,
unsigned int flags); uint32_t flags);
/** Stash application flags. */ /** Stash application flags. */
typedef enum { typedef enum {
......
...@@ -1399,7 +1399,7 @@ int git_path_dirload( ...@@ -1399,7 +1399,7 @@ int git_path_dirload(
git_vector *contents, git_vector *contents,
const char *path, const char *path,
size_t prefix_len, size_t prefix_len,
unsigned int flags) uint32_t flags)
{ {
git_path_diriter iter = GIT_PATH_DIRITER_INIT; git_path_diriter iter = GIT_PATH_DIRITER_INIT;
const char *name; const char *name;
......
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