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