Better (less complex) way of counting the branch name length.
diff --git a/git-flow-hotfix b/git-flow-hotfix
index 0b4ab25..cee8d2f 100644
--- a/git-flow-hotfix
+++ b/git-flow-hotfix
@@ -44,7 +44,7 @@
 	typeset -i width=0
 	typeset branch
 	for branch in $short_names; do
-		typeset -i len=$(($(echo "$branch" | wc -c) - 1))
+		typeset -i len=${#branch}
 		width=$(max $width $len)
 	done
 	width=width+3
diff --git a/git-flow-release b/git-flow-release
index e127131..556af28 100644
--- a/git-flow-release
+++ b/git-flow-release
@@ -56,7 +56,7 @@
 	typeset -i width=0
 	typeset branch
 	for branch in $short_names; do
-		typeset -i len=$(($(echo "$branch" | wc -c) - 1))
+		typeset -i len=${#branch}
 		width=$(max $width $len)
 	done
 	width=width+3
diff --git a/git-flow-support b/git-flow-support
index 3139f22..06bea16 100644
--- a/git-flow-support
+++ b/git-flow-support
@@ -46,7 +46,7 @@
 	typeset -i width=0
 	typeset branch
 	for branch in $short_names; do
-		typeset -i len=$(($(echo "$branch" | wc -c) - 1))
+		typeset -i len=${#branch}
 		width=$(max $width $len)
 	done
 	width=width+3