src/hg/gigAssembler/goldToAgp/goldToAgp.c 1.4

1.4 2009/07/07 18:45:01 hiram
Fixup broken build on Solaris
Index: src/hg/gigAssembler/goldToAgp/goldToAgp.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/gigAssembler/goldToAgp/goldToAgp.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -B -U 4 -r1.3 -r1.4
--- src/hg/gigAssembler/goldToAgp/goldToAgp.c	6 May 2003 07:22:19 -0000	1.3
+++ src/hg/gigAssembler/goldToAgp/goldToAgp.c	7 Jul 2009 18:45:01 -0000	1.4
@@ -36,9 +36,8 @@
 struct fragData *parseFragData(char *words[], char *phase, int whereIx)
 /* Parse frag data from a line. */
 {
 struct fragData *fd;
-int wordCount;
 char *s, *e;
 
 AllocVar(fd);
 fd->ucscName = cloneString(words[0]);
@@ -95,9 +94,8 @@
 struct lineFile *lf = lineFileOpen(goldName, TRUE);
 FILE *f = mustOpen(agpName, "w");
 int lineSize, wordCount;
 char *line, *words[16];
-int i;
 
 printf("Translating %s to %s\n", goldName, agpName);
 while (lineFileNext(lf, &line, &lineSize))
     {