Nuke unneeded printf(). Spotted by pooka@.

This commit is contained in:
oster 2008-09-23 21:36:35 +00:00
parent ee1e376b77
commit c4025116b9
1 changed files with 2 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rf_reconstruct.c,v 1.104 2008/05/19 19:49:54 oster Exp $ */
/* $NetBSD: rf_reconstruct.c,v 1.105 2008/09/23 21:36:35 oster Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
* All rights reserved.
@ -33,7 +33,7 @@
************************************************************/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rf_reconstruct.c,v 1.104 2008/05/19 19:49:54 oster Exp $");
__KERNEL_RCSID(0, "$NetBSD: rf_reconstruct.c,v 1.105 2008/09/23 21:36:35 oster Exp $");
#include <sys/param.h>
#include <sys/time.h>
@ -190,9 +190,6 @@ FreeReconDesc(RF_RaidReconDesc_t *reconDesc)
printf("raid%d: %lu max exec ticks\n",
reconDesc->raidPtr->raidid,
(long) reconDesc->maxReconExecTicks);
#if (RF_RECON_STATS > 0) || defined(KERNEL)
printf("\n");
#endif /* (RF_RECON_STATS > 0) || KERNEL */
RF_Free(reconDesc, sizeof(RF_RaidReconDesc_t));
}