Commit 43af96c2 authored by Tim Düsterhus's avatar Tim Düsterhus
Browse files

Add missing backslash in front of `pack()` call

No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
...@@ -49,7 +49,7 @@ abstract class Hex implements EncoderInterface ...@@ -49,7 +49,7 @@ abstract class Hex implements EncoderInterface
$c = $chunk[1] & 0xf; $c = $chunk[1] & 0xf;
$b = $chunk[1] >> 4; $b = $chunk[1] >> 4;
$hex .= pack( $hex .= \pack(
'CC', 'CC',
(87 + $b + ((($b - 10) >> 8) & ~38)), (87 + $b + ((($b - 10) >> 8) & ~38)),
(87 + $c + ((($c - 10) >> 8) & ~38)) (87 + $c + ((($c - 10) >> 8) & ~38))
...@@ -77,7 +77,7 @@ abstract class Hex implements EncoderInterface ...@@ -77,7 +77,7 @@ abstract class Hex implements EncoderInterface
$c = $chunk[1] & 0xf; $c = $chunk[1] & 0xf;
$b = $chunk[1] >> 4; $b = $chunk[1] >> 4;
$hex .= pack( $hex .= \pack(
'CC', 'CC',
(55 + $b + ((($b - 10) >> 8) & ~6)), (55 + $b + ((($b - 10) >> 8) & ~6)),
(55 + $c + ((($c - 10) >> 8) & ~6)) (55 + $c + ((($c - 10) >> 8) & ~6))
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment