not-cplusplus-20050530

variables must be declared at the start of a block.
This commit is contained in:
Jeffrey Altman 2005-05-30 11:49:30 +00:00 committed by Jeffrey Altman
parent ad4634fca2
commit 5343ad18e3

View File

@ -397,13 +397,15 @@ VInitVolumePackageThread(void * args) {
struct DiskPartition *diskP;
struct vinitvolumepackage_thread_t * params;
struct diskpartition_queue_t * dpq;
int nAttached = 0, nUnattached = 0;
params = (vinitvolumepackage_thread_t *) args;
VOL_LOCK;
/* Attach all the volumes in this partition */
while (queue_IsNotEmpty(params)) {
int nAttached = 0, nUnattached = 0;
dpq = queue_First(params,diskpartition_queue_t);
queue_Remove(dpq);
VOL_UNLOCK;