From bcbddb7106f83bf9f4176af584b4b6b93a6ebc1e Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Sat, 14 Oct 2017 12:26:21 -0700 Subject: [PATCH] Fix unix warnings --- interface/src/commerce/Ledger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/commerce/Ledger.cpp b/interface/src/commerce/Ledger.cpp index 7b48c98e54..904847cb5f 100644 --- a/interface/src/commerce/Ledger.cpp +++ b/interface/src/commerce/Ledger.cpp @@ -227,7 +227,7 @@ void Ledger::updateLocation(const QString& asset_id, const QString location, con auto walletScriptingInterface = DependencyManager::get(); uint walletStatus = walletScriptingInterface->getWalletStatus(); - if (walletStatus != wallet->WALLET_STATUS_READY) { + if (walletStatus != (uint)wallet->WALLET_STATUS_READY) { emit walletScriptingInterface->walletNotSetup(); qDebug(commerce) << "User attempted to update the location of a certificate, but their wallet wasn't ready. Status:" << walletStatus; } else {