Skip to content

Commit

Permalink
wincng.c: fixed use of invalid parameter types in a8d14c5
Browse files Browse the repository at this point in the history
  • Loading branch information
mback2k committed Mar 22, 2015
1 parent a8d14c5 commit e52f35d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wincng.c
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ _libssh2_wincng_load_private(LIBSSH2_SESSION *session,
const char *passphrase,
unsigned char **ppbEncoded,
unsigned long *pcbEncoded,
bool tryLoadRSA, bool tryLoadDSA)
int tryLoadRSA, int tryLoadDSA)
{
unsigned char *data;
unsigned int datalen;
Expand Down Expand Up @@ -552,7 +552,7 @@ _libssh2_wincng_load_private_memory(LIBSSH2_SESSION *session,
const char *passphrase,
unsigned char **ppbEncoded,
unsigned long *pcbEncoded,
bool tryLoadRSA, bool tryLoadDSA)
int tryLoadRSA, int tryLoadDSA)
{
unsigned char *data;
unsigned int datalen;
Expand Down

0 comments on commit e52f35d

Please sign in to comment.