lua: don't make uhttpd_plugin symbol constant
[project/uhttpd.git] / lua.c
diff --git a/lua.c b/lua.c
index f4a5743..2134904 100644 (file)
--- a/lua.c
+++ b/lua.c
@@ -295,6 +295,6 @@ static int lua_plugin_init(const struct uhttpd_ops *o, struct config *c)
        return 0;
 }
 
-const struct uhttpd_plugin uhttpd_plugin = {
+struct uhttpd_plugin uhttpd_plugin = {
        .init = lua_plugin_init,
 };