mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-15 09:27:09 -05:00
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:
parent
b5c503a324
commit
ca9357cd20
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user