From: Volker Lendecke Date: Tue, 10 Jan 2012 09:12:49 +0000 (+0100) Subject: s3-aio_pthread: Make "pd_list" static X-Git-Tag: tevent-0.9.15~455 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eae9c74794994de990b9877247893de21a410b1c;p=thirdparty%2Fsamba.git s3-aio_pthread: Make "pd_list" static --- diff --git a/source3/modules/vfs_aio_pthread.c b/source3/modules/vfs_aio_pthread.c index 78cea8e99c5..65882d5c45a 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,