diff options
author | Ken Payson <kpayson@google.com> | 2016-06-22 15:31:15 -0700 |
---|---|---|
committer | Ken Payson <kpayson@google.com> | 2016-06-23 12:04:19 -0700 |
commit | a4b34c290d5f91866a3eff2f9793c00eb12f16f0 (patch) | |
tree | 0ab3477915cb6be969426112849636e8fc530d9d /src/core/lib/security | |
parent | 00ab5304b784b230053e49fd864477a845e80d5b (diff) |
Changed %lld to use mingw supported PRId64
Diffstat (limited to 'src/core/lib/security')
-rw-r--r-- | src/core/lib/security/credentials/jwt/jwt_credentials.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/security/credentials/jwt/jwt_credentials.c b/src/core/lib/security/credentials/jwt/jwt_credentials.c index 973fb75eaa..f4dd920861 100644 --- a/src/core/lib/security/credentials/jwt/jwt_credentials.c +++ b/src/core/lib/security/credentials/jwt/jwt_credentials.c @@ -149,10 +149,10 @@ grpc_call_credentials *grpc_service_account_jwt_access_credentials_create( "grpc_service_account_jwt_access_credentials_create(" "json_key=%s, " "token_lifetime=" - "gpr_timespec { tv_sec: %lld, tv_nsec: %d, clock_type: %d }, " + "gpr_timespec { tv_sec: %"PRId64", tv_nsec: %d, clock_type: %d }, " "reserved=%p)", 5, - (json_key, (long long)token_lifetime.tv_sec, (int)token_lifetime.tv_nsec, + (json_key, token_lifetime.tv_sec, token_lifetime.tv_nsec, (int)token_lifetime.clock_type, reserved)); GPR_ASSERT(reserved == NULL); return grpc_service_account_jwt_access_credentials_create_from_auth_json_key( |