| commit | 2aeb57eeff39e15a2550d7d85f1b91f5a986b473 | [log] [tgz] |
|---|---|---|
| author | Marcus Meissner <marcus@jet.franken.de> | Sun Oct 22 23:55:34 2000 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Sun Oct 22 23:55:34 2000 +0000 |
| tree | a8f6a409c55122a64a88e676048aa083f4b7ff10 | |
| parent | 564d3802fc4f930b34c62a912bd961a2d8f1af14 [diff] |
Got rid of misleading "No Tls Space" error message.
diff --git a/dlls/commdlg/cdlg32.c b/dlls/commdlg/cdlg32.c index e6381da..6a91d43 100644 --- a/dlls/commdlg/cdlg32.c +++ b/dlls/commdlg/cdlg32.c
@@ -242,8 +242,5 @@ if (COMDLG32_TlsIndex != 0xffffffff) return (DWORD)TlsGetValue(COMDLG32_TlsIndex); else - { - FIXME("No Tls Space\n"); - return 0; - } + return 0; /* we never set an error, so there isn't one */ }