summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2000-02-10 09:53:53 (GMT)
committerhobbs <hobbs@noemail.net>2000-02-10 09:53:53 (GMT)
commitd775012c551468260fbde3acb2a9478dfdd16e79 (patch)
tree2fbde2902883192c0fdc75ecf382055ebe622363 /win
parent64369b53265456704bd17bb77aa8b6fc05f2431a (diff)
downloadtcl-d775012c551468260fbde3acb2a9478dfdd16e79.zip
tcl-d775012c551468260fbde3acb2a9478dfdd16e79.tar.gz
tcl-d775012c551468260fbde3acb2a9478dfdd16e79.tar.bz2
* doc/load.n: added notes about dll load errors on Windows
FossilOrigin-Name: 492839384e931b4714f1631e23a8eeb7d2d21e03
Diffstat (limited to 'win')
-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: