diff --git a/src/linux/module.c b/src/linux/module.c index d267cb97..92fa77ce 100644 --- a/src/linux/module.c +++ b/src/linux/module.c @@ -250,13 +250,10 @@ LM_UnloadModule(const lm_module_t *module) size_t modpath_len; size_t len; - printf("module: %p\n", (void *)module); if (!module) return LM_FALSE; handle = dlopen(NULL, 0); /* Get process first handle */ - printf("handle: %p\n", handle); - fflush(stdout); if (!handle) return LM_FALSE;