src/hg/liftOver/liftOver.c 1.28
1.28 2009/09/23 18:42:21 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/liftOver/liftOver.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/liftOver/liftOver.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -b -B -U 4 -r1.27 -r1.28
--- src/hg/liftOver/liftOver.c 25 Sep 2008 18:12:36 -0000 1.27
+++ src/hg/liftOver/liftOver.c 23 Sep 2009 18:42:21 -0000 1.28
@@ -171,9 +171,9 @@
if ((hasBin || tabSep) && !bedPlus)
usage();
chainTable = optionVal("chainTable", chainTable);
if (optionExists("errorHelp"))
- errAbort(liftOverErrHelp());
+ errAbort("%s", liftOverErrHelp());
if (argc != 5)
usage();
liftOver(argv[1], argv[2], minMatch, minBlocks, minSizeT, minSizeQ,
minChainT, minChainQ, multiple, chainTable, argv[3], argv[4]);