From f5f1575593c3c2792a50e61e08db4d72757bf731 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sat, 19 Dec 2015 18:55:00 -0500 Subject: 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 } -- cgit v1.2.3-65-gdbad