diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2015-12-19 18:55:00 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2015-12-19 18:55:00 -0500 |
commit | f5f1575593c3c2792a50e61e08db4d72757bf731 (patch) | |
tree | dabe1d9d76cc0119ee40268e616c96bc2c4068f5 | |
parent | Fix documentation for the get_sapi_active_target() function. (diff) | |
download | eselect-php-f5f1575593c3c2792a50e61e08db4d72757bf731.tar.gz eselect-php-f5f1575593c3c2792a50e61e08db4d72757bf731.tar.bz2 eselect-php-f5f1575593c3c2792a50e61e08db4d72757bf731.zip |
Add some missing semicolons at the end of a case statement.
-rw-r--r-- | src/php.eselect.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |