6c953808328fb7f034e4a36e99dc1ce326859508
hiram
  Mon Sep 9 15:44:35 2019 -0700
missing a ; line end character refs #23217

diff --git src/hg/lib/botDelay.c src/hg/lib/botDelay.c
index ea8f0d4..a8a44cb 100644
--- src/hg/lib/botDelay.c
+++ src/hg/lib/botDelay.c
@@ -258,31 +258,31 @@
 
 boolean earlyBotCheck(long enteredMainTime, char *cgiName, double delayFrac, int warnMs, int exitMs)
 /* similar to botDelayCgi but for use before the CGI has started any
  * output or setup the cart of done any MySQL operations.  The boolean
  * return is used later in the CGI after it has done all its setups and
  * started output so it can issue the warning.  Pass in delayFrac 0.0
  * to use the default 1.0
  */
 {
 boolean issueWarning = FALSE;
 
 if (botException())	/* don't do this if caller is on the exception list */
     return issueWarning;
 
 if (delayFrac < 0.000001) /* passed in zero, use default 1.0 */
-    delayFrac = 1.0
+    delayFrac = 1.0;
 
 botDelayMillis = hgBotDelayTimeFrac(delayFrac);
 if (botDelayMillis > 0)
     {
     sleep1000(botDelayMillis);
     if (botDelayMillis > warnMs)
 	{
 	if (botDelayMillis > exitMs)
 	    hogExit(cgiName, enteredMainTime);
 	else
 	    issueWarning = TRUE;
 	}
     }
 return issueWarning;
 }	/*	boolean earlyBotCheck()	*/