From 2c01540a763f19c2d4c658607efb16285a1e25a5 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Mon, 28 Jan 2008 16:52:37 +0100 Subject: idmap: Fix an incompatible pointer type warning. Thanks to Simo for pointing me at the easier solution --- source/nsswitch/idmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/nsswitch/idmap.c b/source/nsswitch/idmap.c index 676ab6eb53a..49ed62bfef1 100644 --- a/source/nsswitch/idmap.c +++ b/source/nsswitch/idmap.c @@ -367,7 +367,7 @@ NTSTATUS idmap_init(void) /* terminate */ dl[1] = NULL; - dom_list = dl; + dom_list = (const char **)dl; default_domain = dl[0]; } -- cgit v1.2.1