5c3c3701e278cac3d79ab818baeb952cc5df3d10
galt
  Fri Jan 10 00:29:14 2025 -0800
fixing minor void * declare from code review feedback.

diff --git src/hg/hgTracks/hgTracks.c src/hg/hgTracks/hgTracks.c
index 328225b..5569629 100644
--- src/hg/hgTracks/hgTracks.c
+++ src/hg/hgTracks/hgTracks.c
@@ -7876,31 +7876,31 @@
 
     // insert resulting entries into track->decorators, leaving room for having multiple sources applied
     // to the same track in the future.
     if (track->decoratorGroup == NULL)
         track->decoratorGroup = newDecoratorGroup();
 
     struct decorator* newDecorators = decoratorListFromBbi(decoratorTdb, chromName, result, filters, bbi, mouseScheme);
     track->decoratorGroup->decorators = slCat(track->decoratorGroup->decorators, newDecorators);
     for (struct decorator *d = track->decoratorGroup->decorators; d != NULL; d = d->next)
         d->group = track->decoratorGroup;
     lmCleanup(&lm);
     bigBedFileClose(&bbi);
     }
 }
 
-static void *remoteParallelLoad()
+static void *remoteParallelLoad(void *)
 /* Each thread loads tracks in parallel until all work is done. */
 {
 struct paraFetchData *pfd = NULL;
 boolean allDone = FALSE;
 while(1)
     {
     pthread_mutex_lock( &pfdMutex );
     if (!pfdList)
 	{
 	allDone = TRUE;
 	}
     else
 	{  // move it from the waiting queue to the running queue
 	pfd = slPopHead(&pfdList);
 	slAddHead(&pfdRunning, pfd);