8f28719057af0f5971729c85d7e821f58d737f84
galt
  Tue Dec 31 20:15:01 2024 -0800
fix compiler warning on hgwdev-new with Rocky 9.

diff --git src/hg/hgTables/wiggle.c src/hg/hgTables/wiggle.c
index 7b05dc1..7a2533c 100644
--- src/hg/hgTables/wiggle.c
+++ src/hg/hgTables/wiggle.c
@@ -284,31 +284,31 @@
     else
 	inverseBedList=invertBedList(bedList, lm2, region->chrom, chromStart,
 	    chromEnd, chromSize);
 
     lmCleanup(&lm1);			/*	== bedFreeList(&bedList) */
 
     return inverseBedList;
     }
 else
     return bedList;
 }
 
 static unsigned long long getWigglePossibleIntersection(
     struct wiggleDataStream *wds, struct region *region, char *db,
 	char *table2, struct bed **intersectBedList,
-	    char splitTableOrFileName[256], int operations)
+	    char splitTableOrFileName[HDB_MAX_TABLE_STRING], int operations)
 {
 unsigned long long valuesMatched = 0;
 
 /*	Intersection is either type "any" or "none"
  *	The "none" case is already taken care of during the loading of
  *	table 2 since it was then inverted at that time so it is already
  *	"none" of itself.
  */
 
 
 /* If table2 is NULL, it means that the WIG_INIT macro recognized that we
  * are working on table2 now, so we should not use intersectBedList
  * (in fact we may be trying to compute it here). */
 if ((table2 != NULL) && anyIntersection())
     {