54b5b867f2722552874fded91f2dc25cf92f2823
chmalee
  Mon Dec 15 15:53:04 2025 -0800
Fix typo leftover after merge

diff --git src/hg/hgTracks/hgTracks.c src/hg/hgTracks/hgTracks.c
index 2415e6f55e4..a5079f2825d 100644
--- src/hg/hgTracks/hgTracks.c
+++ src/hg/hgTracks/hgTracks.c
@@ -7206,31 +7206,30 @@
 for (track = *pTrackList; track != NULL; track = track->next)
     {
     AllocVar(tr);
     tr->track = track;
     slAddHead(&track->group->trackList, tr);
     }
 
 /* Straighten things out, clean up, and go home. */
 for (group = list; group != NULL; group = group->next)
     slReverse(&group->trackList);
 slSort(&list, gCmpPriority);
 hashFree(&hash);
 *pGroupList = list;
 }
 
-}
 void groupTrackListAddSuper(struct cart *cart, struct group *group, struct hash *superHash, struct hash *trackHashRef)
 /* Construct a new track list that includes supertracks, sort by priority,
  * and determine if supertracks have visible members.
  * Replace the group track list with this new list.
  * Shared by hgTracks and configure page to expand track list,
  * in contexts where no track display functions (which don't understand
  * supertracks) are invoked.
  * In general, trackHashRef is just a pointer to the global trackHash,
  * except in the case of building the Visible Tracks group, in which
  * case it is a new hash, because we want super tracks duplicated into
  * the visible tracks list and their normal group list */
 {
 struct trackRef *newList = NULL, *tr, *ref;
 
 if (!group || !group->trackList)