Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 869320a

Browse files
committed
Merge pull request libgit2#3546 from Cruel/master
Fix a couple function signatures
2 parents 3d29b12 + 95746a5 commit 869320a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/git2/stash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ GIT_EXTERN(int) git_stash_save(
6868
git_repository *repo,
6969
const git_signature *stasher,
7070
const char *message,
71-
unsigned int flags);
71+
uint32_t flags);
7272

7373
/** Stash application flags. */
7474
typedef enum {

src/path.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1399,7 +1399,7 @@ int git_path_dirload(
13991399
git_vector *contents,
14001400
const char *path,
14011401
size_t prefix_len,
1402-
unsigned int flags)
1402+
uint32_t flags)
14031403
{
14041404
git_path_diriter iter = GIT_PATH_DIRITER_INIT;
14051405
const char *name;

0 commit comments

Comments
 (0)