From f352939154cdc991beb45782907de68cc7185e70 Mon Sep 17 00:00:00 2001 From: Phenom Date: Mon, 8 May 2017 12:25:29 +0200 Subject: [PATCH] Fix Warnings: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] if(! rsIdentity->getIdDetails(gxs_id,details)) ^~ --- retroshare-gui/src/gui/Identity/IdDialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/retroshare-gui/src/gui/Identity/IdDialog.cpp b/retroshare-gui/src/gui/Identity/IdDialog.cpp index 755dab9c9..9b1901104 100644 --- a/retroshare-gui/src/gui/Identity/IdDialog.cpp +++ b/retroshare-gui/src/gui/Identity/IdDialog.cpp @@ -2472,8 +2472,8 @@ void IdDialog::copyRetroshareLink() RsIdentityDetails details ; - if(! rsIdentity->getIdDetails(gxs_id,details)) - return ; + if(! rsIdentity->getIdDetails(gxs_id,details)) + return ; if (!mIdQueue) return;