e685265dd1b666acaab2bc076c141c368fb4be66
hiram
  Thu Oct 15 11:36:17 2015 -0700
fixup gcc warnings for -Wunused-but-set-variable refs #16121

diff --git src/hg/hgTracks/retroGene.c src/hg/hgTracks/retroGene.c
index e06f9d5..1b5ca94 100644
--- src/hg/hgTracks/retroGene.c
+++ src/hg/hgTracks/retroGene.c
@@ -42,34 +42,34 @@
 lf->tallStart = pg->thickStart;
 lf->tallEnd = pg->thickEnd;
 lf->extra = pg;
 return lf;
 }
 void lfRetroGene(struct track *tg)
 /* Load the items in one custom track - just move beds in
  * window... */
 {
 struct linkedFeatures *lfList = NULL, *lf;
 struct ucscRetroInfo *pg = NULL, *list = NULL;
 struct sqlConnection *conn = hAllocConn(database);
 struct sqlResult *sr;
 char **row;
 int rowOffset;
-int colCount ;
+// int colCount ;
 
 sr = hRangeQuery(conn, tg->table, chromName, winStart, winEnd, NULL, &rowOffset);
-colCount = sqlCountColumns(sr);
+// colCount = sqlCountColumns(sr);
 while ((row = sqlNextRow(sr)) != NULL)
     {
     //if (colCount == 56) 
     //    pg = retroMrnaInfo56Load(row+rowOffset);
     //else
     pg = ucscRetroInfoLoad(row+rowOffset);
     slAddHead(&list, pg);
     }
 sqlFreeResult(&sr);
 hFreeConn(&conn);
 
 for (pg = list; pg != NULL; pg = pg->next)
     {
     lf = lfFromRetroGene(pg);
     lf->grayIx = 9;