1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00

A break after a return is useless.

This commit is contained in:
Dima Dorfman 2002-03-24 08:38:21 +00:00
parent 3afe2c7806
commit e10bdff354
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93082

View File

@ -307,7 +307,6 @@ yesno: if (sysctl(mib, 2, &value, &len, NULL, 0) == -1)
if (value == 0)
return (defaultresult);
return (value);
break;
default:
errno = EINVAL;
return (-1);