summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadAix.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-08-15 20:44:42 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-08-15 20:44:42 (GMT)
commite2b7aacde0b54ede80212fed9a78769e97cfad9a (patch)
tree18b7d7b323f17ccdb5624da38b4ae2ec0f9767c5 /unix/tclLoadAix.c
parentbc5ad3cf65f93eea249301f61a37cefaafa8c410 (diff)
parent64d7cb80a01248468fed1f40a6eda03c71e126fd (diff)
downloadtcl-e2b7aacde0b54ede80212fed9a78769e97cfad9a.zip
tcl-e2b7aacde0b54ede80212fed9a78769e97cfad9a.tar.gz
tcl-e2b7aacde0b54ede80212fed9a78769e97cfad9a.tar.bz2
Improve bunch of error-messages
Diffstat (limited to 'unix/tclLoadAix.c')
-rw-r--r--unix/tclLoadAix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclLoadAix.c b/unix/tclLoadAix.c
index 2f6b6d4..527d35d 100644
--- a/unix/tclLoadAix.c
+++ b/unix/tclLoadAix.c
@@ -253,11 +253,11 @@ caterr(
strcat(errbuf, "to many errors");
break;
case L_ERROR_NOLIB:
- strcat(errbuf, "can't load library");
+ strcat(errbuf, "cannot load library");
strcat(errbuf, p);
break;
case L_ERROR_UNDEF:
- strcat(errbuf, "can't find symbol");
+ strcat(errbuf, "cannot find symbol");
strcat(errbuf, p);
break;
case L_ERROR_RLDBAD: