summaryrefslogtreecommitdiff
path: root/tests/library/test_loader.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/library/test_loader.c')
-rw-r--r--tests/library/test_loader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/library/test_loader.c b/tests/library/test_loader.c
index 46d2ad0..6088c92 100644
--- a/tests/library/test_loader.c
+++ b/tests/library/test_loader.c
@@ -25,10 +25,10 @@ int main( void ) {
wolf_error_t error;
char errbuf[512];
- library = wolf_library_load( "testlib.so", &error );
+ library = wolf_library_load( "./testlib.so.0.0.0", &error );
if( error != WOLF_OK ) {
fprintf( stderr, "Error %d loading the library: %s\n",
- error, wolf_libary_errmsg( error, library, errbuf, 512 ) );
+ error, wolf_library_errmsg( error, library, errbuf, 512 ) );
return EXIT_FAILURE;
}