diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-08-15 20:23:54 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-08-15 20:23:54 (GMT) |
| commit | 539dee14dd53a081a6787a33d0cc731b5b2f329f (patch) | |
| tree | ee872a83d3c887e120a260f12250968fde5101bf /unix/tclLoadAix.c | |
| parent | 5eed049c6cf5c50b4c4994f26c13d27a48581f78 (diff) | |
| download | tcl-539dee14dd53a081a6787a33d0cc731b5b2f329f.zip tcl-539dee14dd53a081a6787a33d0cc731b5b2f329f.tar.gz tcl-539dee14dd53a081a6787a33d0cc731b5b2f329f.tar.bz2 | |
Improve bunch of error-messages
Diffstat (limited to 'unix/tclLoadAix.c')
| -rw-r--r-- | unix/tclLoadAix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclLoadAix.c b/unix/tclLoadAix.c index 17fca04..a66e435 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: |
