Remove break after return.

This commit is contained in:
Stefan Farfeleder 2006-07-18 07:10:30 +00:00
parent 2b8c9fa46b
commit 080397239a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=160463

View File

@ -457,10 +457,8 @@ getdayvar(s)
switch(*(s + offs - 2)) {
case '-':
return(-(atoi(s + offs - 1)));
break;
case '+':
return(atoi(s + offs - 1));
break;
}