Changeset 7190 in orxonox.OLD for branches/shared_lib/src/util/loading
- Timestamp:
- Feb 22, 2006, 3:55:20 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/shared_lib/src/util/loading/dynamic_loader.cc
r7177 r7190 65 65 DynamicLoader::initialize(); 66 66 67 this->handle = lt_dlopen ext(&libName[0]);67 this->handle = lt_dlopen(&libName[0]); 68 68 if(this->handle == NULL) 69 69 { … … 77 77 78 78 void* handle; 79 handle = lt_dlopen ext(libName);79 handle = lt_dlopen(libName); 80 80 if(handle == NULL) 81 81 {
Note: See TracChangeset
for help on using the changeset viewer.