X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Flibs%2FRiffExtractor.php;h=304b99b8a43ab4c7aece268b2080524de69fb808;hb=4839468844ce027f4da884cb73a32d81970f3964;hp=3a8b55e21c898848e7371601543ad1a52601c38c;hpb=96906168cac0e9a7748511b48c369cf22c8406d5;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]; } };