src/hg/wikiPlot/wikiPlot.c 1.9
1.9 2010/03/18 18:34:24 hiram
remove reference to HGCGI in makefile and fix compile warning errors
Index: src/hg/wikiPlot/wikiPlot.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/wikiPlot/wikiPlot.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -b -B -U 4 -r1.8 -r1.9
--- src/hg/wikiPlot/wikiPlot.c 19 Aug 2009 23:25:19 -0000 1.8
+++ src/hg/wikiPlot/wikiPlot.c 18 Mar 2010 18:34:24 -0000 1.9
@@ -77,9 +77,9 @@
void readGold(char *fileName, struct clonePos **retList, struct hash **retHash)
/* Read .agp/gold formatted file */
{
struct lineFile *lf = lineFileOpen(fileName, TRUE);
-char *line, *words[12];
+char *words[12];
struct clonePos *cpList = NULL, *cp;
struct hash *hash = newHash(0);
int wordCount;
@@ -117,12 +117,11 @@
void readGl(char *fileName, struct clonePos **retList, struct hash **retHash)
/* Read gl formatted files. */
{
struct lineFile *lf = lineFileOpen(fileName, TRUE);
-char *line, *row[3];
+char *row[3];
struct clonePos *cpList = NULL, *cp;
struct hash *hash = newHash(0);
-int wordCount;
while (lineFileRow(lf, row))
{
char *clone = row[0];
@@ -198,9 +197,9 @@
int column)
/* Read in one of Terry Furey's dat files. */
{
struct lineFile *lf = lineFileOpen(fileName, TRUE);
-char *line, *row[3];
+char *row[3];
struct clonePos *cpList = NULL, *cp;
struct hash *hash = newHash(0);
while (lineFileRow(lf, row))