dlls/kernel32/path.c: Use FIXME_ONCE for quieter reports.

Max TenEyck Woodbury max at mtew.isa-geek.net
Wed Jul 14 15:38:28 CDT 2010


---
 dlls/kernel32/path.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/kernel32/path.c b/dlls/kernel32/path.c
index 0e69f91..ed68ac8 100644
--- a/dlls/kernel32/path.c
+++ b/dlls/kernel32/path.c
@@ -313,7 +313,7 @@ DWORD WINAPI GetLongPathNameW( LPCWSTR shortpath, LPWSTR longpath, DWORD longlen
 
     if (shortpath[0] == '\\' && shortpath[1] == '\\')
     {
-        FIXME("UNC pathname %s\n", debugstr_w(shortpath));
+        FIXME_ONCE("UNC pathname %s\n", debugstr_w(shortpath));
 
         tmplen = strlenW(shortpath);
         if (tmplen < longlen)
@@ -1070,7 +1070,7 @@ BOOL WINAPI MoveFileWithProgressW( LPCWSTR source, LPCWSTR dest,
         return DeleteFileW( source );
 
     if (flag & MOVEFILE_WRITE_THROUGH)
-        FIXME("MOVEFILE_WRITE_THROUGH unimplemented\n");
+        FIXME_ONCE("MOVEFILE_WRITE_THROUGH unimplemented\n");
 
     /* check if we are allowed to rename the source */
 
@@ -1719,7 +1719,7 @@ BOOL WINAPI NeedCurrentDirectoryForExePathW( LPCWSTR name )
     WCHAR env_val;
 
     /* MSDN mentions some 'registry location'. We do not use registry. */
-    FIXME("(%s): partial stub\n", debugstr_w(name));
+    FIXME_ONCE("(%s): partial stub\n", debugstr_w(name));
 
     if (strchrW(name, '\\'))
         return TRUE;
-- 
1.7.1.1




More information about the wine-patches mailing list