summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_aio_pthread.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2012-01-10 10:12:49 +0100
committerVolker Lendecke <vl@samba.org>2012-01-10 10:21:44 +0100
commiteae9c74794994de990b9877247893de21a410b1c (patch)
tree1212cec87e71eb9e227522cccf7a6988d36436f6 /source3/modules/vfs_aio_pthread.c
parent354e43ca1e1a671a9a2a64e40d8fedc19b848ce6 (diff)
downloadsamba-eae9c74794994de990b9877247893de21a410b1c.tar.gz
samba-eae9c74794994de990b9877247893de21a410b1c.tar.bz2
samba-eae9c74794994de990b9877247893de21a410b1c.zip
s3-aio_pthread: Make "pd_list" static
Diffstat (limited to 'source3/modules/vfs_aio_pthread.c')
-rw-r--r--source3/modules/vfs_aio_pthread.c2
1 files changed, 1 insertions, 1 deletions
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,