summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-07-06 02:54:06 +0000
committerAndrew Bartlett <abartlet@samba.org>2004-07-06 02:54:06 +0000
commit59f944de4fc5f307bae68b757cd6a7571dacc40b (patch)
tree09243eca587a3f9e94aff34b98f1b915c1fdc919 /source
parent893360ea01fe5e68017b33d7ea10264913925eee (diff)
downloadsamba-59f944de4fc5f307bae68b757cd6a7571dacc40b.tar.gz
samba-59f944de4fc5f307bae68b757cd6a7571dacc40b.tar.xz
samba-59f944de4fc5f307bae68b757cd6a7571dacc40b.zip
r1355: Add const (I missed this when I changed the function prototype earlier)
Andrew Bartlett
Diffstat (limited to 'source')
-rw-r--r--source/ntvfs/ntvfs_base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/ntvfs/ntvfs_base.c b/source/ntvfs/ntvfs_base.c
index f94dacb57fc..923a131d5e4 100644
--- a/source/ntvfs/ntvfs_base.c
+++ b/source/ntvfs/ntvfs_base.c
@@ -42,7 +42,7 @@ static int num_backends;
The 'type' is used to specify whether this is for a disk, printer or IPC$ share
*/
-static NTSTATUS ntvfs_register(void *_ops)
+static NTSTATUS ntvfs_register(const void *_ops)
{
const struct ntvfs_ops *ops = _ops;
struct ntvfs_ops *new_ops;