1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-02 08:42:48 +00:00

Remove a diagnostic message left in by mistake.

This commit is contained in:
Doug Rabson 1999-01-09 16:50:04 +00:00
parent ba2f0650b6
commit f8047d25cc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=42439

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: kern_module.c,v 1.12 1998/11/06 02:18:57 peter Exp $
* $Id: kern_module.c,v 1.13 1999/01/09 14:59:50 dfr Exp $
*/
#include <sys/param.h>
@ -301,8 +301,7 @@ modstat(struct proc* p, struct modstat_args* uap)
if (version == sizeof(struct module_stat)) {
if (error = copyout(&mod->data, &stat->data, sizeof(mod->data)))
goto out;
} else
printf("kldstat: v1 request\n");
}
p->p_retval[0] = 0;