*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Tue, 16 Apr 1996 09:54:32 +0200
changeset 248 27ae4364185e
parent 247 fbb6e3b5764c
child 249 fb82fccfb779
*** empty log message ***
ObjFLoader.st
ObjectFileLoader.st
--- a/ObjFLoader.st	Sun Apr 14 01:29:58 1996 +0200
+++ b/ObjFLoader.st	Tue Apr 16 09:54:32 1996 +0200
@@ -2123,7 +2123,7 @@
     char *errMsg;
 
     if ((pathName == nil) || __isString(pathName)) {
-	handle = dlopen(pathName == nil ? (char *)0 : __stringVal(pathName), RTLD_NOW);
+	handle = (void *)dlopen(pathName == nil ? (char *)0 : __stringVal(pathName), RTLD_NOW);
 
 	if (! handle) {
 	    errMsg = dlerror();
@@ -3159,6 +3159,6 @@
 !ObjectFileLoader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Attic/ObjFLoader.st,v 1.88 1996-04-02 21:30:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Attic/ObjFLoader.st,v 1.89 1996-04-16 07:54:32 cg Exp $'
 ! !
 ObjectFileLoader initialize!
--- a/ObjectFileLoader.st	Sun Apr 14 01:29:58 1996 +0200
+++ b/ObjectFileLoader.st	Tue Apr 16 09:54:32 1996 +0200
@@ -2123,7 +2123,7 @@
     char *errMsg;
 
     if ((pathName == nil) || __isString(pathName)) {
-	handle = dlopen(pathName == nil ? (char *)0 : __stringVal(pathName), RTLD_NOW);
+	handle = (void *)dlopen(pathName == nil ? (char *)0 : __stringVal(pathName), RTLD_NOW);
 
 	if (! handle) {
 	    errMsg = dlerror();
@@ -3159,6 +3159,6 @@
 !ObjectFileLoader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ObjectFileLoader.st,v 1.88 1996-04-02 21:30:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ObjectFileLoader.st,v 1.89 1996-04-16 07:54:32 cg Exp $'
 ! !
 ObjectFileLoader initialize!