summaryrefslogtreecommitdiffstats
path: root/win/tclWinLoad.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-02-10 09:53:53 (GMT)
committerhobbs <hobbs>2000-02-10 09:53:53 (GMT)
commit7f5e420c3e6cba41b5e710be95437aa5acaf4712 (patch)
tree2fbde2902883192c0fdc75ecf382055ebe622363 /win/tclWinLoad.c
parent6eb6479cb14c409190e21647d7bcc652aaa17a33 (diff)
downloadtcl-7f5e420c3e6cba41b5e710be95437aa5acaf4712.zip
tcl-7f5e420c3e6cba41b5e710be95437aa5acaf4712.tar.gz
tcl-7f5e420c3e6cba41b5e710be95437aa5acaf4712.tar.bz2
* doc/load.n: added notes about dll load errors on Windows
Diffstat (limited to 'win/tclWinLoad.c')
-rw-r--r--win/tclWinLoad.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinLoad.c b/win/tclWinLoad.c
index a962b7a..360b629 100644
--- a/win/tclWinLoad.c
+++ b/win/tclWinLoad.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinLoad.c,v 1.4 2000/02/10 08:55:39 hobbs Exp $
+ * RCS: @(#) $Id: tclWinLoad.c,v 1.5 2000/02/10 09:53:57 hobbs Exp $
*/
#include "tclWinInt.h"
@@ -87,7 +87,7 @@ TclpLoadFile(interp, fileName, sym1, sym2, proc1Ptr, proc2Ptr, clientDataPtr)
case ERROR_MOD_NOT_FOUND:
case ERROR_DLL_NOT_FOUND:
Tcl_AppendResult(interp, "this library or a dependent library",
- " could not be found", (char *)
+ " could not be found in library path", (char *)
NULL);
break;
case ERROR_INVALID_DLL: