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:
committed by
Carlos R. Mafra
parent
05a3eadd65
commit
52b8aabccc
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user