[PATCH] Fixup failure to load io engine object logging

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
diff --git a/ioengines.c b/ioengines.c
index 723f310..658b2eb 100644
--- a/ioengines.c
+++ b/ioengines.c
@@ -34,12 +34,17 @@
 	sprintf(engine_lib, "/usr/local/lib/fio/fio-engine-%s.o", engine);
 	dlerror();
 	dlhandle = dlopen(engine_lib, RTLD_LAZY);
-	if (!dlhandle)
-		printf("bla: %s\n", dlerror());
+	if (!dlhandle) {
+		td_vmsg(td, -1, dlerror());
+		return NULL;
+	}
 
 	ops = dlsym(dlhandle, "ioengine");
-	if (!ops)
-		printf("get ops failed\n");
+	if (!ops) {
+		td_vmsg(td, -1, dlerror());
+		dlclose(dlhandle);
+		return NULL;
+	}
 
 	ops->dlhandle = dlhandle;
 	return ops;