Cleanup some whitespace that indent got wrong a long time ago.

This commit is contained in:
oster 2001-11-20 02:37:29 +00:00
parent 9cc0f33345
commit d11d1bd6fe
1 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rf_alloclist.c,v 1.8 2001/11/13 07:11:12 lukem Exp $ */
/* $NetBSD: rf_alloclist.c,v 1.9 2001/11/20 02:37:29 oster Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
* All rights reserved.
@ -37,7 +37,7 @@
***************************************************************************/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rf_alloclist.c,v 1.8 2001/11/13 07:11:12 lukem Exp $");
__KERNEL_RCSID(0, "$NetBSD: rf_alloclist.c,v 1.9 2001/11/20 02:37:29 oster Exp $");
#include <dev/raidframe/raidframevar.h>
@ -50,18 +50,18 @@ __KERNEL_RCSID(0, "$NetBSD: rf_alloclist.c,v 1.8 2001/11/13 07:11:12 lukem Exp $
#include "rf_shutdown.h"
RF_DECLARE_STATIC_MUTEX(alist_mutex)
static unsigned int fl_hit_count, fl_miss_count;
static unsigned int fl_hit_count, fl_miss_count;
static RF_AllocListElem_t *al_free_list = NULL;
static int al_free_list_count;
static RF_AllocListElem_t *al_free_list = NULL;
static int al_free_list_count;
#define RF_AL_FREELIST_MAX 256
#define DO_FREE(_p,_sz) RF_Free((_p),(_sz))
static void rf_ShutdownAllocList(void *);
static void rf_ShutdownAllocList(void *);
static void rf_ShutdownAllocList(ignored)
static void rf_ShutdownAllocList(ignored)
void *ignored;
{
RF_AllocListElem_t *p, *pt;