summaryrefslogtreecommitdiff
path: root/libmej
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>1999-09-29 00:14:05 +0000
committerMichael Jennings <mej@kainx.org>1999-09-29 00:14:05 +0000
commit35356e00f007d91eadc4bd4a893cce63c0ae0daf (patch)
treee71e1dc3269b7e036b12712393e7b6276f059e16 /libmej
parent3630db17ab4da396631c72e812d046c3c8b11938 (diff)
downloadeterm-35356e00f007d91eadc4bd4a893cce63c0ae0daf.tar.gz
Tue Sep 28 18:54:16 PDT 1999 Michael Jennings <mej@eterm.org>
The config parser is now much more bullet-proof. A pixmaps.list file with too many entries will no longer crash Eterm. SVN revision: 450
Diffstat (limited to 'libmej')
-rw-r--r--libmej/strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmej/strings.c b/libmej/strings.c
index 99c007b..c46e0bc 100644
--- a/libmej/strings.c
+++ b/libmej/strings.c
@@ -552,7 +552,7 @@ CondenseWhitespace(char *s)
if ((pbuff >= s) && (isspace(*(pbuff - 1))))
pbuff--;
*pbuff = 0;
- D_STRINGS(("CondenseWhitespace() returning \"%s\"\n", s));
+ D_STRINGS(("CondenseWhitespace() returning \"%s\".\n", s));
return (REALLOC(s, strlen(s) + 1));
}