From: Sarah Hoffmann Date: Mon, 28 Mar 2016 20:04:08 +0000 (+0200) Subject: Fix fixing of coding style X-Git-Tag: v3.0.0~185 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/83cca343c3b8264e8c2bea79c0e660dd7ab6dd42?ds=inline;hp=--cc Fix fixing of coding style --- 83cca343c3b8264e8c2bea79c0e660dd7ab6dd42 diff --git a/lib/lib.php b/lib/lib.php index 5edd7328..fccda314 100644 --- a/lib/lib.php +++ b/lib/lib.php @@ -77,7 +77,7 @@ function getProcessorCount() { $sCPU = file_get_contents('/proc/cpuinfo'); - preg_match_all('#processor : [0-9]+#', $sCPU, $aMatches); + preg_match_all('#processor\s+: [0-9]+#', $sCPU, $aMatches); return sizeof($aMatches[0]); }