aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_module.c
diff options
context:
space:
mode:
authorDoug Rabson <dfr@FreeBSD.org>1999-01-09 16:50:04 +0000
committerDoug Rabson <dfr@FreeBSD.org>1999-01-09 16:50:04 +0000
commitf8047d25cc3e2907dae1af21502d811efa002f7b (patch)
tree5db0ed648be2cf7ce7d68a518b4c677501526fa5 /sys/kern/kern_module.c
parentba2f0650b6ef1d923a51a2f04ca3a9b365cb0e84 (diff)
downloadsrc-f8047d25cc3e2907dae1af21502d811efa002f7b.tar.gz
src-f8047d25cc3e2907dae1af21502d811efa002f7b.zip
Remove a diagnostic message left in by mistake.
Notes
Notes: svn path=/head/; revision=42439
Diffstat (limited to 'sys/kern/kern_module.c')
-rw-r--r--sys/kern/kern_module.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/kern/kern_module.c b/sys/kern/kern_module.c
index 5fd126f1b712..afe9f2e2de78 100644
--- a/sys/kern/kern_module.c
+++ b/sys/kern/kern_module.c
@@ -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;