92b041beb28db2fb2fd2fe016c07b1b351a1c57b
gperez2
  Sat Mar 28 13:40:36 2026 -0700
Capitalize QuickLift in hgConvert error message, refs #35536

diff --git src/hg/hgConvert/hgConvert.c src/hg/hgConvert/hgConvert.c
index 862c51b63f4..0a45bd01cca 100644
--- src/hg/hgConvert/hgConvert.c
+++ src/hg/hgConvert/hgConvert.c
@@ -694,31 +694,31 @@
 	printf("%s:%d-%d",  chain->qName, qStart+1, qEnd);
         if (startedAnchor)
 	    printf("</A>");
 	printf(" (%3.1f%% of bases, %3.1f%% of span)<BR>\n",
 	    100.0 * blockSize/origSize,
 	    100.0 * (chain->tEnd - chain->tStart) / origSize);
 #ifdef NTONOW
         if (doSegments)
             drawSegments(fromDb->name, toDb->name, chain);
         break;
 #endif
 	}
     }
 if (badList)
     {
-    printf("<BR>Some of your tracks failed to lift because the type is not supported by quickLift.<BR><BR>");
+    printf("<BR>Some of your tracks failed to lift because the type is not supported by QuickLift.<BR><BR>");
     printf("<TABLE><TR><TD><B>Short label<TD><B>Type</TD></TR>");
     for(; badList; badList = badList->next)
         {
         printf("<TR><TD>%s</TD><TD>%s</TD></TR>", badList->shortLabel, badList->type);
         }
     printf("</TABLE>");
     }
 cartWebEnd();
 }
 
 static struct liftOverChain *cleanLiftOverList(struct liftOverChain *list)
 /* eliminate from the list where toDb doesn't exist in dbDb */
 {
 struct liftOverChain *cleanList = NULL;
 struct hash *dbDbHash = hDbDbHash();