summaryrefslogtreecommitdiff
path: root/enterprise.cpp
diff options
context:
space:
mode:
authorRusty Wagner <rusty.wagner@gmail.com>2023-01-23 11:59:09 -0700
committerRusty Wagner <rusty.wagner@gmail.com>2023-01-23 16:16:19 -0700
commit53ab17fbf4f5210fece91d601b15cab069fbb41f (patch)
tree0deae2d24c651b2bcb78aaecf34b0d7959a2549a /enterprise.cpp
parent9528390a74e0178efe1b422258f9dfb60072dc4c (diff)
Warning cleanup
Diffstat (limited to 'enterprise.cpp')
-rw-r--r--enterprise.cpp2
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))
{