diff options
author | Volker Lendecke <vl@samba.org> | 2012-01-10 10:12:49 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-01-10 10:21:44 +0100 |
commit | eae9c74794994de990b9877247893de21a410b1c (patch) | |
tree | 1212cec87e71eb9e227522cccf7a6988d36436f6 /source3 | |
parent | 354e43ca1e1a671a9a2a64e40d8fedc19b848ce6 (diff) | |
download | samba-eae9c74794994de990b9877247893de21a410b1c.tar.gz samba-eae9c74794994de990b9877247893de21a410b1c.tar.bz2 samba-eae9c74794994de990b9877247893de21a410b1c.zip |
s3-aio_pthread: Make "pd_list" static
Diffstat (limited to 'source3')
-rw-r--r-- | source3/modules/vfs_aio_pthread.c | 2 |
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, |