From eae9c74794994de990b9877247893de21a410b1c Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 10 Jan 2012 10:12:49 +0100 Subject: s3-aio_pthread: Make "pd_list" static --- source3/modules/vfs_aio_pthread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/modules/vfs_aio_pthread.c b/source3/modules/vfs_aio_pthread.c index 78cea8e99c..65882d5c45 100644 --- a/source3/modules/vfs_aio_pthread.c +++ b/source3/modules/vfs_aio_pthread.c @@ -42,7 +42,7 @@ struct aio_private_data { }; /* List of outstanding requests we have. */ -struct aio_private_data *pd_list; +static struct aio_private_data *pd_list; static void aio_pthread_handle_completion(struct event_context *event_ctx, struct fd_event *event, -- cgit