841ca7bd6e38614c2b323fe5f217c774f13ff55a
max
  Tue May 9 14:19:57 2023 -0700
fixing dumb error that broke the build, thanks Lou

diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c
index 9bf6820..2d4b10c 100644
--- src/hg/hgc/hgc.c
+++ src/hg/hgc/hgc.c
@@ -1735,31 +1735,31 @@
     if (strchr(tmp->name, '|'))
         {
         title = strchr(fieldName, '|');
         *title++ = 0;
         }
     struct embeddedTbl *new;
     AllocVar(new);
     new->field = fieldName;
     new->title = title != NULL ? cloneString(title) : fieldName;
     slAddHead(retList, new);
     slNameAddHead(retFieldNames, fieldName);
     hashAdd(embeddedTblHash, fieldName, new);
     }
 }
 
-static void printFieldLabel(char *entry)
+void printFieldLabel(char *entry)
 /* print the field label, the first column in the table, as a <td>. Allow a
  * longer description after a |-char, as some fields are not easy to
  * understand. */
 {
 char *afterPipe = strchr(entry, '|');
 if (afterPipe)
     *afterPipe = 0;
 
 printf("<tr><td>%s", entry);
 
 if (afterPipe)
     {
     // Could also have a "?" icon and show the description on mouse over
     afterPipe++; // skip past | character
     printf("<br><span class='bedExtraTblNote'>%s</small>", afterPipe);