diff options
| author | Rusty Wagner <rusty.wagner@gmail.com> | 2023-01-23 11:59:09 -0700 |
|---|---|---|
| committer | Rusty Wagner <rusty.wagner@gmail.com> | 2023-01-23 16:16:19 -0700 |
| commit | 53ab17fbf4f5210fece91d601b15cab069fbb41f (patch) | |
| tree | 0deae2d24c651b2bcb78aaecf34b0d7959a2549a /enterprise.cpp | |
| parent | 9528390a74e0178efe1b422258f9dfb60072dc4c (diff) | |
Warning cleanup
Diffstat (limited to 'enterprise.cpp')
| -rw-r--r-- | enterprise.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/enterprise.cpp b/enterprise.cpp index 07f3ff82..3a25162c 100644 --- a/enterprise.cpp +++ b/enterprise.cpp @@ -237,7 +237,7 @@ BinaryNinja::EnterpriseServer::LicenseCheckout::LicenseCheckout(int64_t duration // Keychain auth can activate a license if we have one in the keychain // If we have an expired named license, try to get a fresh floating one - if (!IsLicenseStillActivated() || (!IsFloatingLicense() && BNGetLicenseExpirationTime() < time(nullptr))) + if (!IsLicenseStillActivated() || (!IsFloatingLicense() && (time_t)BNGetLicenseExpirationTime() < time(nullptr))) { if (!EnterpriseServer::AcquireLicense(duration)) { |
