src/hg/protein/kgProtAliasNCBI/kgProtAliasNCBI.c 1.7

1.7 2009/09/23 18:42:24 angie
Fixed compiler warnings from gcc 4.3.3, mostly about system calls whose return values weren't checked and non-literal format strings with no args.
Index: src/hg/protein/kgProtAliasNCBI/kgProtAliasNCBI.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/protein/kgProtAliasNCBI/kgProtAliasNCBI.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -b -B -U 4 -r1.6 -r1.7
--- src/hg/protein/kgProtAliasNCBI/kgProtAliasNCBI.c	3 Sep 2008 19:20:58 -0000	1.6
+++ src/hg/protein/kgProtAliasNCBI/kgProtAliasNCBI.c	23 Sep 2009 18:42:24 -0000	1.7
@@ -102,10 +102,10 @@
 fclose(o2);
 hFreeConn(&conn);
 hFreeConn(&conn2);
 
-system("cat jj.dat|sort|uniq  >kgProtAliasNCBI.tab");
-system("rm jj.dat");
+mustSystem("cat jj.dat|sort|uniq  >kgProtAliasNCBI.tab");
+mustSystem("rm jj.dat");
     
 return(0);
 }