Skip to content

Commit

Permalink
Correct signedness warning
Browse files Browse the repository at this point in the history
Fixes regression from 0418e53.
  • Loading branch information
gaul committed Nov 19, 2017
1 parent 4c73a0a commit 7cda326
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/curl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -332,8 +332,8 @@ static const std::string IAMCRED_SECRETACCESSKEY = "SecretAccessKey";
static const std::string IAMCRED_ACCESSTOKEN = "Token";
static const std::string IAMCRED_EXPIRATION = "Expiration";
static const std::string IAMCRED_ROLEARN = "RoleArn";
static const int IAMCRED_KEYCOUNT = 4;
static const int IAMCRED_KEYCOUNT_ECS = 5;
static const size_t IAMCRED_KEYCOUNT = 4;
static const size_t IAMCRED_KEYCOUNT_ECS = 5;

// [NOTICE]
// This symbol is for libcurl under 7.23.0
Expand Down

0 comments on commit 7cda326

Please sign in to comment.