[ros-diffs] [rharabien] 52410: - Fix build

rharabien at svn.reactos.org rharabien at svn.reactos.org
Tue Jun 21 21:06:18 UTC 2011


Author: rharabien
Date: Tue Jun 21 21:06:18 2011
New Revision: 52410

URL: http://svn.reactos.org/svn/reactos?rev=52410&view=rev
Log:
- Fix build

Modified:
    trunk/reactos/ntoskrnl/inbv/inbv.c

Modified: trunk/reactos/ntoskrnl/inbv/inbv.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/inbv/inbv.c?rev=52410&r1=52409&r2=52410&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/inbv/inbv.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/inbv/inbv.c [iso-8859-1] Tue Jun 21 21:06:18 2011
@@ -718,7 +718,7 @@
 DisplayFilter(PCHAR *String)
 {
     /* Ignore empty and "." strings */
-    if(*String && strcmp(String, ".") != 0)
+    if(*String && strcmp(*String, ".") != 0)
     {
         /* Remove the filter */
         InbvInstallDisplayStringFilter(NULL);




More information about the Ros-diffs mailing list