048d0dcf99a55daf4dbec3c9f39decafe81b2c5c galt Fri Jan 10 12:47:51 2025 -0800 fix compiler complaint of nightly util build. diff --git src/hg/hgTracks/hgTracks.c src/hg/hgTracks/hgTracks.c index 5569629..61a73a3 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(void *) +static void *remoteParallelLoad(void *x) /* 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);