Commit c698fc86 authored by Andrew Nguyen's avatar Andrew Nguyen Committed by Alexandre Julliard

ntdll: Fix one-time warning message output.

parent fff50be3
...@@ -847,7 +847,7 @@ static void add_fs_cache( dev_t dev, fsid_t fsid, BOOLEAN case_sensitive ) ...@@ -847,7 +847,7 @@ static void add_fs_cache( dev_t dev, fsid_t fsid, BOOLEAN case_sensitive )
} }
/* Cache is out of space, warn */ /* Cache is out of space, warn */
if (once++) if (!once++)
WARN( "FS cache is out of space, expect performance problems\n" ); WARN( "FS cache is out of space, expect performance problems\n" );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment