summaryrefslogtreecommitdiffstats
path: root/src/client/ingen_client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/ingen_client.cpp')
-rw-r--r--src/client/ingen_client.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/client/ingen_client.cpp b/src/client/ingen_client.cpp
index 693b981c..db98d54a 100644
--- a/src/client/ingen_client.cpp
+++ b/src/client/ingen_client.cpp
@@ -60,16 +60,12 @@ struct IngenClientModule : public Ingen::Shared::Module {
}
};
-static IngenClientModule* module = NULL;
-
extern "C" {
Ingen::Shared::Module*
-ingen_module_load() {
- if (!module)
- module = new IngenClientModule();
-
- return module;
+ingen_module_load()
+{
+ return new IngenClientModule();
}
} // extern "C"