summaryrefslogtreecommitdiff
path: root/src/util/ParseFile.c
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-01-14 22:06:57 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-01-14 22:06:57 +0000
commit72965fac2ab053aa30c033f7497bbe3f635dfc30 (patch)
tree2e06a1e5ade6a3209180d7c0a3522c20daca453e /src/util/ParseFile.c
parent913f17717d4197f504d5203fd53da28523191e5e (diff)
Replacing hard-coded (and wrong) filename with __FILE__ macro in error
message. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1993 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/util/ParseFile.c')
-rw-r--r--src/util/ParseFile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/ParseFile.c b/src/util/ParseFile.c
index f30407b8..7bedba9b 100644
--- a/src/util/ParseFile.c
+++ b/src/util/ParseFile.c
@@ -495,7 +495,7 @@ static void CheckBuf(int p, int l)
fprintf(stderr,"WARNING: Parser buffer overflow on line %d\n",
l);
fprintf(stderr,"This indicates either an incorrect parm file or\n");
- fprintf(stderr,"the need to recompile doParse.C with a bigger\n");
+ fprintf(stderr,"the need to recompile " __FILE__ " with a bigger\n");
fprintf(stderr,"BUF_SZ parm.\n");
assert(0);