Added a 'break' on the last line in a switch statement, since the ISO

C standard do not permit labels at the end of compound statements.
This commit is contained in:
kristerw 2001-05-24 10:49:31 +00:00
parent 76475ad726
commit 7ae7504033

View File

@ -1,4 +1,4 @@
/* $NetBSD: ibcs2_misc.c,v 1.55 2001/01/22 20:08:04 jdolecek Exp $ */
/* $NetBSD: ibcs2_misc.c,v 1.56 2001/05/24 10:49:31 kristerw Exp $ */
/*
* Copyright (c) 1994, 1995, 1998 Scott Bartram
@ -1246,6 +1246,7 @@ ibcs2_sys_sysfs(p, v, retval)
case IBCS2_GETFSIND:
case IBCS2_GETFSTYP:
case IBCS2_GETNFSTYP:
break;
}
return EINVAL; /* XXX - TODO */
}