Skip to content

Commit def3a95

Browse files
committed
[skip ci] ext/standard/pack: Fix indentation to use tabs
1 parent a297a44 commit def3a95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/standard/pack.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ PHP_FUNCTION(pack)
360360

361361
/* Calculate output length and upper bound while processing*/
362362
for (i = 0; i < formatcount; i++) {
363-
char code = formatcodes[i];
363+
char code = formatcodes[i];
364364
int arg = formatargs[i];
365365

366366
switch (code) {
@@ -443,7 +443,7 @@ PHP_FUNCTION(pack)
443443

444444
/* Do actual packing */
445445
for (i = 0; i < formatcount; i++) {
446-
char code = formatcodes[i];
446+
char code = formatcodes[i];
447447
int arg = formatargs[i];
448448

449449
switch (code) {

0 commit comments

Comments
 (0)