- Lauri
>From 5ab8f26d6afe8ef027ad2580bf6f9abac79c10d2 Mon Sep 17 00:00:00 2001 From: Lauri Kasanen <[email protected]> Date: Sun, 17 Jun 2012 17:20:31 +0300 Subject: [PATCH] plugin: Mark register_stagemap* as static
Signed-off-by: Lauri Kasanen <[email protected]> --- src/mk_plugin.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mk_plugin.c b/src/mk_plugin.c index e23696f..a4ee831 100644 --- a/src/mk_plugin.c +++ b/src/mk_plugin.c @@ -70,7 +70,7 @@ void *mk_plugin_load_symbol(void *handler, const char *symbol) return s; } -void mk_plugin_register_stagemap_add(struct plugin_stagem **stm, struct plugin *p) +static void mk_plugin_register_stagemap_add(struct plugin_stagem **stm, struct plugin *p) { struct plugin_stagem *list, *new; @@ -92,7 +92,7 @@ void mk_plugin_register_stagemap_add(struct plugin_stagem **stm, struct plugin * list->next = new; } -void mk_plugin_register_stagemap(struct plugin *p) +static void mk_plugin_register_stagemap(struct plugin *p) { /* Plugin to stages */ if (p->hooks & MK_PLUGIN_STAGE_10) { -- 1.7.2.1
_______________________________________________ Monkey mailing list [email protected] http://lists.monkey-project.com/listinfo/monkey
