src/hg/protein/spm3/spm3.c 1.5
1.5 2009/09/23 18:42:25 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/spm3/spm3.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/protein/spm3/spm3.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -B -U 4 -r1.4 -r1.5
--- src/hg/protein/spm3/spm3.c 3 Sep 2008 19:21:03 -0000 1.4
+++ src/hg/protein/spm3/spm3.c 23 Sep 2009 18:42:25 -0000 1.5
@@ -106,11 +106,11 @@
hFreeConn(&conn3);
fclose(o2);
fclose(o3);
-system("cat j.dat |sort|uniq >proteinMrna.tab");
-system("cat jj.dat|sort|uniq >protein.lis");
-system("rm j.dat");
-system("rm jj.dat");
+mustSystem("cat j.dat |sort|uniq >proteinMrna.tab");
+mustSystem("cat jj.dat|sort|uniq >protein.lis");
+mustSystem("rm j.dat");
+mustSystem("rm jj.dat");
return(0);
}