Skip to content

Commit

Permalink
Merge pull request #81 from kuwa72/fix/migration_id_limited_intmax
Browse files Browse the repository at this point in the history
Fix sprintf format %d to %s in status command #80
  • Loading branch information
davedevelopment committed Jul 10, 2015
2 parents e768de1 + 02a15c1 commit b6fdfcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Phpmig/Console/Command/StatusCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
foreach($versions as $missing) {
$output->writeln(
' <error>up</error> ' .
sprintf(" %14d ", $missing) .
sprintf(" %14s ", $missing) .
' <error>** MISSING **</error> '
);
}
Expand Down

0 comments on commit b6fdfcb

Please sign in to comment.