diff options
Diffstat (limited to 'unix')
| -rw-r--r-- | unix/tclLoadAix.c | 4 | ||||
| -rw-r--r-- | unix/tclLoadDyld.c | 2 | ||||
| -rw-r--r-- | unix/tclUnixTest.c | 2 |
3 files changed, 4 insertions, 4 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: diff --git a/unix/tclLoadDyld.c b/unix/tclLoadDyld.c index 43cb806..c42617c 100644 --- a/unix/tclLoadDyld.c +++ b/unix/tclLoadDyld.c @@ -118,7 +118,7 @@ DyldOFIErrorMsg( case NSObjectFileImageFormat: return "bad object file format"; case NSObjectFileImageAccess: - return "can't read object file"; + return "cannot read object file"; default: return "unknown error"; } diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c index 2358d06..4c9ee8d 100644 --- a/unix/tclUnixTest.c +++ b/unix/tclUnixTest.c @@ -207,7 +207,7 @@ TestfilehandlerCmd( fcntl(GetFd(pipePtr->readFile), F_SETFL, O_NONBLOCK); fcntl(GetFd(pipePtr->writeFile), F_SETFL, O_NONBLOCK); #else - Tcl_AppendResult(interp, "can't make pipes non-blocking", + Tcl_AppendResult(interp, "cannot make pipes non-blocking", (char *)NULL); return TCL_ERROR; #endif |
