This allows scan.c to build with -Wincompatible-pointer-types Build regression introduced by: efa5269f23c2237eb5368bf5245ffbbf35714153
Signed-off-by: Jeremy Huddleston <[email protected]> --- hw/xfree86/parser/scan.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/xfree86/parser/scan.c b/hw/xfree86/parser/scan.c index 1cff3bc..7ce8c6d 100644 --- a/hw/xfree86/parser/scan.c +++ b/hw/xfree86/parser/scan.c @@ -767,7 +767,7 @@ OpenConfigFile(const char *path, const char *cmdline, const char *projroot, * suffix. This filter is passed to scandir(3). */ static int -ConfigFilter(const struct dirent *de) +ConfigFilter(struct dirent *de) { const char *name = de->d_name; size_t len; -- 1.7.6.1 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
