GCC 3.1 cleanup - add a break after default: at the end of a switch

statement.
This commit is contained in:
Murray Stokely 2002-04-08 08:34:00 +00:00
parent a1f1e35d8b
commit b77b9b9a90
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=94178
2 changed files with 2 additions and 0 deletions

View File

@ -173,6 +173,7 @@ forward(fp, style, off, sbp)
return;
break;
default:
break;
}
if (fflag) {

View File

@ -103,6 +103,7 @@ reverse(fp, style, off, sbp)
r_buf(fp);
break;
default:
break;
}
}