From d460842616d467dfaf7b51ac2db94adb1ff5cbb0 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 29 Dec 2017 12:23:33 +0200 Subject: loplugin:unnecessaryparen improve return check Change-Id: I8128aa4b5fc60efd1dbf5971cdde11e588f5f64b Reviewed-on: https://gerrit.libreoffice.org/47167 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sal/qa/osl/file/osl_File.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sal/qa') diff --git a/sal/qa/osl/file/osl_File.cxx b/sal/qa/osl/file/osl_File.cxx index 509a78d5c0c2..a5fe20a03b9c 100644 --- a/sal/qa/osl/file/osl_File.cxx +++ b/sal/qa/osl/file/osl_File.cxx @@ -5145,7 +5145,7 @@ inline OUString getCurrentPID() #else nPID = getpid(); #endif - return (OUString::number(nPID)); + return OUString::number(nPID); } //~ do some clean up work after all test completed. -- cgit