From 52b8aabcccadc19d295ad8bc2e262c5ad5407089 Mon Sep 17 00:00:00 2001 From: Christophe CURIS Date: Thu, 9 May 2013 17:34:13 +0200 Subject: [PATCH] WINGs: Fixed incorrect return type for internal function The function did return a boolean actually as would be expectable from such function, but its prototype did not use the proper type. --- WINGs/wfilepanel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WINGs/wfilepanel.c b/WINGs/wfilepanel.c index 9e8fdff0..3eb04f83 100644 --- a/WINGs/wfilepanel.c +++ b/WINGs/wfilepanel.c @@ -475,7 +475,7 @@ static char *get_name_from_path(const char *path) return wstrdup(&(path[size])); } -static int filterFileName(WMFilePanel * panel, const char *file, Bool isDirectory) +static Bool filterFileName(WMFilePanel * panel, const char *file, Bool isDirectory) { return True; }