From f4307200ac338202bc4680cd25fcbac83620ae95 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 30 Dec 2003 22:55:12 +0000 Subject: "subsystems" should be static (This used to be commit 64cf9b3fd3ad971973f6f1d73b924af225252837) --- source4/lib/module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib') diff --git a/source4/lib/module.c b/source4/lib/module.c index c6c4ef6979..ffd6a38c77 100644 --- a/source4/lib/module.c +++ b/source4/lib/module.c @@ -123,7 +123,7 @@ struct subsystem { struct subsystem *prev, *next; }; -struct subsystem *subsystems = NULL; +static struct subsystem *subsystems = NULL; void register_subsystem(const char *name, register_backend_function callback) { -- cgit