Add semicolon to empty default case to silence warning.

This commit is contained in:
Chris D. Faulhaber 2002-05-11 03:12:02 +00:00
parent 94a48596a3
commit c01df1d365
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96383

View File

@ -372,6 +372,7 @@ get_num(const char *val)
mult = sizeof(int);
break;
default:
;
}
if (mult != 0) {