Module: wine Branch: master Commit: 7603e859c3d23026820c04e05955467894455ebc URL: http://source.winehq.org/git/wine.git/?a=commit;h=7603e859c3d23026820c04e059...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Fri Feb 17 06:42:49 2017 +0000
dplayx: Don't print an error when no Lobby Providers are found.
Signed-off-by: Alistair Leslie-Hughes leslie_alistair@hotmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/dplayx/dplay.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dlls/dplayx/dplay.c b/dlls/dplayx/dplay.c index 92062d3..cf6bd4a 100644 --- a/dlls/dplayx/dplay.c +++ b/dlls/dplayx/dplay.c @@ -4379,8 +4379,7 @@ static HRESULT WINAPI IDirectPlay4AImpl_EnumConnections( IDirectPlay4A *iface, if( RegOpenKeyExA( HKEY_LOCAL_MACHINE, searchSubKey, 0, KEY_READ, &hkResult ) != ERROR_SUCCESS ) { - /* Hmmm. Does this mean that there are no service providers? */ - ERR(": no service providers?\n"); + TRACE("No Lobby Providers have been registered.\n"); return DP_OK; }