diff options
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclLoadDld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclLoadDld.c b/unix/tclLoadDld.c index 7d8a58d..f1c1589 100644 --- a/unix/tclLoadDld.c +++ b/unix/tclLoadDld.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclLoadDld.c,v 1.7 2002/01/09 19:09:28 kennykb Exp $ + * RCS: @(#) $Id: tclLoadDld.c,v 1.8 2002/01/10 22:03:12 kennykb Exp $ */ #include "tclInt.h" @@ -93,7 +93,7 @@ TclpLoadFile(interp, pathPtr, sym1, sym2, proc1Ptr, proc2Ptr, firstTime = 0; } - if ((returnCode = dld_link(Tcl_GetString(pathPtr)) != 0) { + if ((returnCode = dld_link(Tcl_GetString(pathPtr))) != 0) { Tcl_AppendResult(interp, "couldn't load file \"", Tcl_GetString(pathPtr), "\": ", dld_strerror(returnCode), (char *) NULL); |