summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2015-12-19 18:55:00 -0500
committerMichael Orlitzky <mjo@gentoo.org>2015-12-19 18:55:00 -0500
commitf5f1575593c3c2792a50e61e08db4d72757bf731 (patch)
treedabe1d9d76cc0119ee40268e616c96bc2c4068f5
parentFix documentation for the get_sapi_active_target() function. (diff)
downloadeselect-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.in2
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
}