fix typo: s/ULONG_LONG_MAX/ULLONG_MAX/

The latter is in the standard, while the former is an old GCC-ism.
This commit is contained in:
Thien-Thi Nguyen 2022-08-23 21:18:06 -04:00
parent 1339c6bf0b
commit 580c9b794b
No known key found for this signature in database
GPG Key ID: 670322244C807502

View File

@ -1179,7 +1179,7 @@ TALER_KYCLOGIC_requirements_to_logic (const char *requirements,
{ {
struct TALER_KYCLOGIC_KycCheck *needed[num_kyc_checks]; struct TALER_KYCLOGIC_KycCheck *needed[num_kyc_checks];
unsigned int needed_cnt = 0; unsigned int needed_cnt = 0;
unsigned long long min_cost = ULONG_LONG_MAX; unsigned long long min_cost = ULLONG_MAX;
unsigned int max_checks = 0; unsigned int max_checks = 0;
const struct TALER_KYCLOGIC_KycProvider *kp_best = NULL; const struct TALER_KYCLOGIC_KycProvider *kp_best = NULL;