Austin English : kernel32: Quiet a noisy FIXME.

Alexandre Julliard julliard at winehq.org
Wed Jan 29 14:53:33 CST 2014


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

Author: Austin English <austinenglish at gmail.com>
Date:   Mon Jan 27 15:57:59 2014 -0800

kernel32: Quiet a noisy FIXME.

---

 dlls/kernel32/process.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/kernel32/process.c b/dlls/kernel32/process.c
index d42d120..ca21e09 100644
--- a/dlls/kernel32/process.c
+++ b/dlls/kernel32/process.c
@@ -3849,7 +3849,8 @@ HRESULT WINAPI RegisterApplicationRestart(PCWSTR pwzCommandLine, DWORD dwFlags)
  */
 DWORD WINAPI WTSGetActiveConsoleSessionId(void)
 {
-    FIXME("stub\n");
+    static int once;
+    if (!once++) FIXME("stub\n");
     return 0;
 }
 




More information about the wine-cvs mailing list