Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/eselect-php:master commit in: src/
Date: Sun, 20 Dec 2015 00:17:50
Message-Id: 1450569300.f5f1575593c3c2792a50e61e08db4d72757bf731.mjo@gentoo
1 commit: f5f1575593c3c2792a50e61e08db4d72757bf731
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 19 23:55:00 2015 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 19 23:55:00 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=f5f15755
7
8 Add some missing semicolons at the end of a case statement.
9
10 src/php.eselect.in | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/src/php.eselect.in b/src/php.eselect.in
14 index a2266c5..d9c1555 100644
15 --- a/src/php.eselect.in
16 +++ b/src/php.eselect.in
17 @@ -57,7 +57,7 @@ parse_target_major_version() {
18 local major="${target:3:1}"
19 case "${major}" in
20 5|7) echo "${major}" ;;
21 - *) die "invalid PHP target name: ${target}"
22 + *) die "invalid PHP target name: ${target}" ;;
23 esac
24 }