|
From: <kin...@us...> - 2025-09-23 10:59:10
|
Revision: 7475
http://sourceforge.net/p/teem/code/7475
Author: kindlmann
Date: 2025-09-23 10:59:06 +0000 (Tue, 23 Sep 2025)
Log Message:
-----------
more consistent use of newline
Modified Paths:
--------------
teem/trunk/src/hest/parseHest.c
Modified: teem/trunk/src/hest/parseHest.c
===================================================================
--- teem/trunk/src/hest/parseHest.c 2025-09-23 10:49:03 UTC (rev 7474)
+++ teem/trunk/src/hest/parseHest.c 2025-09-23 10:59:06 UTC (rev 7475)
@@ -69,7 +69,7 @@
again by copyArgv */
if (!(file = fopen(argv[argIdx] + 1, "rb"))) {
/* can't open the indicated response file for reading */
- fprintf(stderr, "%scouldn't open \"%s\" for reading as response file", ME,
+ fprintf(stderr, "%scouldn't open \"%s\" for reading as response file\n", ME,
argv[argIdx] + 1);
*argsNumP = 0;
*respFileNumP = 0;
@@ -226,8 +226,7 @@
}
/* uint _hestErrStrlen(const hestOpt *opt, int argc, const char **argv) ...
- * This was a bad idea, so has been removed for TeemV2. Now hest internally uses biff
- */
+ * This was a bad idea; removed for TeemV2. Now hest internally uses biff */
/*
identStr()
@@ -1353,7 +1352,7 @@
}
/* else !sawHelp; do sanity check on argc_used vs argc */
if (argc_used < argc) {
- fprintf(stderr, "%sargc_used %d < argc %d; sorry, confused", ME, argc_used, argc);
+ fprintf(stderr, "%sargc_used %d < argc %d; sorry, confused\n", ME, argc_used, argc);
airMopError(mop);
return 1;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|