summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-29 12:23:33 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-29 18:19:23 +0100
commitd460842616d467dfaf7b51ac2db94adb1ff5cbb0 (patch)
treeba2fe48f2568784d1f7d8f04ad33b827b616f40b /sal
parent0e5fc156da7f40528f636a89b6bad7e14bdc8350 (diff)
loplugin:unnecessaryparen improve return check
Change-Id: I8128aa4b5fc60efd1dbf5971cdde11e588f5f64b Reviewed-on: https://gerrit.libreoffice.org/47167 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sal')
-rw-r--r--sal/qa/osl/file/osl_File.cxx2
1 files changed, 1 insertions, 1 deletions
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.