From 5d78c65851d8da14b6370a40393b3fb8367d7e1a Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 28 Oct 2014 12:09:10 +0000 Subject: coverity#704085 Unchecked return value other patterns aren't really the same as this one Change-Id: Ie26fd5c01d156004f755017a859679e904a29520 --- ucb/source/ucp/ftp/ftpcontent.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ucb') diff --git a/ucb/source/ucp/ftp/ftpcontent.cxx b/ucb/source/ucp/ftp/ftpcontent.cxx index d58ea9edf247..d903516d528a 100644 --- a/ucb/source/ucp/ftp/ftpcontent.cxx +++ b/ucb/source/ucp/ftp/ftpcontent.cxx @@ -941,7 +941,7 @@ Sequence FTPContent::setPropertyValues( if(evt.getLength()) { // title has changed notifyPropertiesChange(evt); - exchange(new FTPContentIdentifier(m_aFTPURL.ident(false,false))); + (void)exchange(new FTPContentIdentifier(m_aFTPURL.ident(false,false))); } return ret; -- cgit v1.2.3