mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
- Fix build
svn path=/trunk/; revision=52410
This commit is contained in:
parent
a965ca6b67
commit
964aabb309
1 changed files with 1 additions and 1 deletions
|
@ -718,7 +718,7 @@ INIT_FUNCTION
|
|||
DisplayFilter(PCHAR *String)
|
||||
{
|
||||
/* Ignore empty and "." strings */
|
||||
if(*String && strcmp(String, ".") != 0)
|
||||
if(*String && strcmp(*String, ".") != 0)
|
||||
{
|
||||
/* Remove the filter */
|
||||
InbvInstallDisplayStringFilter(NULL);
|
||||
|
|
Loading…
Reference in a new issue