Dan Kegel : kernel32: Quiet an extremely verbose stub fixme.

Alexandre Julliard julliard at winehq.org
Mon Jun 11 15:08:06 CDT 2012


Module: wine
Branch: master
Commit: db48235880b61eaa8fc351f8c987d3c530379a86
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=db48235880b61eaa8fc351f8c987d3c530379a86

Author: Dan Kegel <dank at kegel.com>
Date:   Sun Jun 10 10:02:42 2012 -0700

kernel32: Quiet an extremely verbose stub fixme.

---

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

diff --git a/dlls/kernel32/thread.c b/dlls/kernel32/thread.c
index c56e1d3..5702d6c 100644
--- a/dlls/kernel32/thread.c
+++ b/dlls/kernel32/thread.c
@@ -377,7 +377,9 @@ BOOL WINAPI SetThreadPriorityBoost(
  */
 BOOL WINAPI SetThreadStackGuarantee(PULONG stacksize)
 {
-    FIXME("(%p): stub\n", stacksize);
+    static int once;
+    if (once++ == 0)
+        FIXME("(%p): stub\n", stacksize);
     return TRUE;
 }
 




More information about the wine-cvs mailing list