From 95746a57c70a4020a2025f9a3ad3700386d286ee Mon Sep 17 00:00:00 2001 From: Thomas Edvalson Date: Mon, 14 Dec 2015 19:21:09 -0500 Subject: [PATCH] Fix a couple function signatures --- include/git2/stash.h | 2 +- src/path.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/git2/stash.h b/include/git2/stash.h index 526db0ba2..b321dc34e 100644 --- a/include/git2/stash.h +++ b/include/git2/stash.h @@ -68,7 +68,7 @@ GIT_EXTERN(int) git_stash_save( git_repository *repo, const git_signature *stasher, const char *message, - unsigned int flags); + uint32_t flags); /** Stash application flags. */ typedef enum { diff --git a/src/path.c b/src/path.c index 72cb289e0..18b4f03fd 100644 --- a/src/path.c +++ b/src/path.c @@ -1399,7 +1399,7 @@ int git_path_dirload( git_vector *contents, const char *path, size_t prefix_len, - unsigned int flags) + uint32_t flags) { git_path_diriter iter = GIT_PATH_DIRITER_INIT; const char *name;