9723799cf6f1a8fb714ae1493b224b8e91aebf09
tdreszer
  Mon Jul 30 12:17:38 2012 -0700
Making final pass through tree of checkins as dictated by Jim. None of these changes should affect executables in any way. This pass is due to expanding fingerprint caused by kompare.
diff --git src/hg/hgTables/schema.c src/hg/hgTables/schema.c
index e671190..cbf39b6 100644
--- src/hg/hgTables/schema.c
+++ src/hg/hgTables/schema.c
@@ -331,31 +331,32 @@
     }
 slFreeList(&chain);
 return retVal;
 }
 
 static void printTrackHtml(struct trackDb *tdb)
 /* If trackDb has html for table, print it out in a new section. */
 {
 if (tdb != NULL && isNotEmpty(tdb->html))
     {
     webNewSection("%s (%s) Track Description", tdb->shortLabel, tdb->track);
     char *browserVersion;
     if (btIE == cgiClientBrowser(&browserVersion, NULL, NULL) && *browserVersion < '8')
         puts(tdb->html);
     else
-    printf("<span style='position:relative; top:-1.2em; margin-bottom:0em;'>%s\n</span>",tdb->html);
+        printf("<span style='position:relative; top:-1.2em; margin-bottom:0em;'>%s\n</span>",
+               tdb->html);
     }
 }
 
 
 static void showSchemaDb(char *db, struct trackDb *tdb, char *table)
 /* Show schema to open html page. */
 {
 struct trackDb *tdbForConn = tdb ? tdb : curTrack;
 struct sqlConnection *conn;
 if (tdbForConn == NULL)
     conn = hAllocConn(db);
 else
     conn = hAllocConnTrack(db, tdbForConn);
 struct joiner *joiner = allJoiner;
 struct joinerPair *jpList, *jp;
@@ -403,37 +404,35 @@
 	hPrintf("\">");
 	hPrintf("%s", jp->b->table);
 	hPrintf("</A>");
 	aViaIndex = isViaIndex(js, jp->a);
 	bViaIndex = isViaIndex(js, jp->b);
 	hPrintf(".%s ", jp->b->field);
 	if (aViaIndex && bViaIndex)
 	    {
 	    hPrintf("(%s.%s and %s.%s are arrays sharing an index)",
 	        jp->a->table, jp->a->field,
 	        jp->b->table, jp->b->field);
 
 	    }
 	else if (aViaIndex)
 	    {
-            hPrintf("(which is an array index into %s.%s)",
-	        jp->a->table, jp->a->field);
+            hPrintf("(which is an array index into %s.%s)", jp->a->table, jp->a->field);
 	    }
 	else if (bViaIndex)
 	    {
-            hPrintf("(%s.%s is an array index into %s.%s)",
-		jp->a->table, jp->a->field,
+            hPrintf("(%s.%s is an array index into %s.%s)", jp->a->table, jp->a->field,
 	        jp->b->table, jp->b->field);
 	    }
 	else
 	    {
 	    hPrintf("(via %s.%s)", jp->a->table, jp->a->field);
 	    }
 	hPrintf("<BR>\n");
 	}
     }
 webNewSection("Sample Rows");
 printSampleRows(10, conn, splitTable);
 printTrackHtml(tdb);
 hFreeConn(&conn);
 }