silence warning

This commit is contained in:
Pierangelo Masarati 2003-01-27 21:51:33 +00:00
parent ffde204880
commit e38e50646b

View file

@ -242,7 +242,7 @@ static int module_unload (module_loaded_t *module)
}
/* call module's terminate routine, if present */
if (terminate = lt_dlsym(module->lib, "term_module")) {
if ((terminate = lt_dlsym(module->lib, "term_module"))) {
terminate();
}