Fix warning: this ‘if’ clause does not guard...

/retroshare-gui/src/gui/gxschannels/CreateGxsChannelMsg.cpp:360:
warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if(assume_file_ready)
This commit is contained in:
Phenom 2017-07-15 13:25:14 +02:00 committed by csoler
parent b5c503a324
commit ca9357cd20

View File

@ -357,8 +357,8 @@ void CreateGxsChannelMsg::addAttachment(const RsFileHash &hash, const std::strin
uint32_t flags = SFI_TYPE_CHANNEL | SFI_FLAG_ALLOW_DELETE ;
if(assume_file_ready)
flags |= SFI_FLAG_ASSUME_FILE_READY;
if( assume_file_ready )
flags |= SFI_FLAG_ASSUME_FILE_READY ;
if (local)
flags |= SFI_STATE_LOCAL;