Skip to content

Commit b6fdfcb

Browse files
Merge pull request #81 from kuwa72/fix/migration_id_limited_intmax
Fix sprintf format %d to %s in status command #80
2 parents e768de1 + 02a15c1 commit b6fdfcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Phpmig/Console/Command/StatusCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
7272
foreach($versions as $missing) {
7373
$output->writeln(
7474
' <error>up</error> ' .
75-
sprintf(" %14d ", $missing) .
75+
sprintf(" %14s ", $missing) .
7676
' <error>** MISSING **</error> '
7777
);
7878
}

0 commit comments

Comments
 (0)