2be931f3cb75e702800f7b45040cfe045a7db3b9
markd
  Wed Sep 8 19:19:49 2010 -0700
fix incorrect use of printf detect by gcc 4.4.3
diff --git src/hg/lib/hui.c src/hg/lib/hui.c
index 2f3db8e..1c860f4 100644
--- src/hg/lib/hui.c
+++ src/hg/lib/hui.c
@@ -92,7 +92,7 @@
 if (htmlString == NULL)
     return FALSE;
 
-printf(htmlString);
+printf("%s", htmlString);
 freeMem(htmlString);
 return TRUE;
 }