Skip to content

Commit 76f8c13

Browse files
authored
Fix inconsistent switch case syntax
This must have been a typo, since it's the only case in the project using the non-standard syntax.
1 parent 4426cdf commit 76f8c13

File tree

1 file changed

+1
-1
lines changed
  • library/Zend/Pdf/Resource/Image

1 file changed

+1
-1
lines changed

library/Zend/Pdf/Resource/Image/Png.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ public function __construct($imageFileName)
190190
fseek($imageFile, 4, SEEK_CUR); //4 Byte Ending Sequence
191191
break;
192192

193-
case 'IEND';
193+
case 'IEND':
194194
break 2; //End the loop too
195195

196196
default:

0 commit comments

Comments
 (0)