1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-04 12:54:20 +01:00

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.
This commit is contained in:
Christophe CURIS
2013-05-09 17:34:13 +02:00
committed by Carlos R. Mafra
parent 05a3eadd65
commit 52b8aabccc

View File

@@ -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;
}