Kaydet (Commit) fa801a69 authored tarafından Thomas Arnhold's avatar Thomas Arnhold

-Werror,-Wunused-result

Change-Id: I8ec20e6a391bd835097af9be44a174e8e7b19cce
üst 3176bfdc
...@@ -163,7 +163,8 @@ void test::BootstrapFixture::validate(const OUString& rPath, test::ValidationFor ...@@ -163,7 +163,8 @@ void test::BootstrapFixture::validate(const OUString& rPath, test::ValidationFor
OUString aOutputFile = aOutput.GetFileName(); OUString aOutputFile = aOutput.GetFileName();
OUString aCommand = aValidator + rPath + " > " + aOutputFile; OUString aCommand = aValidator + rPath + " > " + aOutputFile;
system(OUStringToOString(aCommand, RTL_TEXTENCODING_UTF8).getStr()); int returnValue = system(OUStringToOString(aCommand, RTL_TEXTENCODING_UTF8).getStr());
(void)returnValue;
OString aContentString = loadFile(aOutput.GetURL()); OString aContentString = loadFile(aOutput.GetURL());
OUString aContentOUString = OStringToOUString(aContentString, RTL_TEXTENCODING_UTF8); OUString aContentOUString = OStringToOUString(aContentString, RTL_TEXTENCODING_UTF8);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment