From 46408840a4ed9ef44f97a8da7ce2d65df6f112b2 Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Thu, 24 Mar 2016 15:57:00 +0300 Subject: [PATCH] rst: Mark post_prepare_cbs static Signed-off-by: Pavel Emelyanov --- criu/cr-restore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/criu/cr-restore.c b/criu/cr-restore.c index 2ba0d3855..3c1c3d7ec 100644 --- a/criu/cr-restore.c +++ b/criu/cr-restore.c @@ -186,7 +186,7 @@ struct post_prepare_cb { void *data; }; -struct list_head post_prepare_cbs = LIST_HEAD_INIT(post_prepare_cbs); +static struct list_head post_prepare_cbs = LIST_HEAD_INIT(post_prepare_cbs); int add_post_prepare_cb(int (*actor)(void *data), void *data) {