X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Flibs%2FRiffExtractor.php;h=304b99b8a43ab4c7aece268b2080524de69fb808;hb=44f5d8ada93fd228ac793249cd60a5cb567e1527;hp=3a8b55e21c898848e7371601543ad1a52601c38c;hpb=58cb1f824ac75c3b58ba19d1e88c1b38f9dc1fab;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/libs/RiffExtractor.php b/includes/libs/RiffExtractor.php index 3a8b55e21c..304b99b8a4 100644 --- a/includes/libs/RiffExtractor.php +++ b/includes/libs/RiffExtractor.php @@ -94,7 +94,6 @@ class RiffExtractor { * @return int */ public static function extractUInt32( $string ) { - $unpacked = unpack( 'V', $string ); - return $unpacked[1]; + return unpack( 'V', $string )[1]; } };