diff options
Diffstat (limited to 'source3/smbd/perfcount.c')
-rw-r--r-- | source3/smbd/perfcount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/perfcount.c b/source3/smbd/perfcount.c index 3bc83b98d5..1561893758 100644 --- a/source3/smbd/perfcount.c +++ b/source3/smbd/perfcount.c @@ -85,7 +85,7 @@ NTSTATUS smb_register_perfcounter(int interface_version, const char *name, entry = SMB_XMALLOC_P(struct smb_perfcount_module); entry->name = smb_xstrdup(name); - entry->handlers = (struct smb_perfcount_handlers*) handlers; + entry->handlers = discard_const_p(struct smb_perfcount_handlers, handlers); DLIST_ADD(modules, entry); DEBUG(3, ("Successfully added perfcounter module '%s'\n", name)); |