src/hg/protein/pbCalDistGlobal/pbCalDistGlobal.c 1.8

1.8 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/pbCalDistGlobal/pbCalDistGlobal.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/protein/pbCalDistGlobal/pbCalDistGlobal.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -b -B -U 4 -r1.7 -r1.8
--- src/hg/protein/pbCalDistGlobal/pbCalDistGlobal.c	23 Jul 2008 20:55:15 -0000	1.7
+++ src/hg/protein/pbCalDistGlobal/pbCalDistGlobal.c	23 Sep 2009 18:42:24 -0000	1.8
@@ -266,9 +266,9 @@
     
     if ((icnt % 10000) == 0)
         {
 	printf("%d done.\n", icnt);fflush(stdout);
-	system("date");
+	mustSystem("date");
 	}
     }
 sqlFreeResult(&sr2);
 sqlDisconnect(&conn2);