commit:     f5f1575593c3c2792a50e61e08db4d72757bf731
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 19 23:55:00 2015 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sat Dec 19 23:55:00 2015 +0000
URL:        https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=f5f15755

Add some missing semicolons at the end of a case statement.

 src/php.eselect.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/php.eselect.in b/src/php.eselect.in
index a2266c5..d9c1555 100644
--- a/src/php.eselect.in
+++ b/src/php.eselect.in
@@ -57,7 +57,7 @@ parse_target_major_version() {
        local major="${target:3:1}"
        case "${major}" in
                5|7) echo "${major}" ;;
-               *)   die "invalid PHP target name: ${target}"
+               *)   die "invalid PHP target name: ${target}" ;;
        esac
 }
 

Reply via email to