Henri Verbeet : wined3d: Change an ERR to a TRACE in IWineD3DEventQueryImpl_GetData().
Module: wine Branch: master Commit: d5a8637ecce0d1e02f8d7a0294a5524861d70b7b URL: http://source.winehq.org/git/wine.git/?a=commit;h=d5a8637ecce0d1e02f8d7a0294... Author: Henri Verbeet <hverbeet(a)codeweavers.com> Date: Wed Dec 16 19:55:56 2009 +0100 wined3d: Change an ERR to a TRACE in IWineD3DEventQueryImpl_GetData(). This is allowed behaviour. --- dlls/wined3d/query.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/wined3d/query.c b/dlls/wined3d/query.c index f3e51de..a8295cc 100644 --- a/dlls/wined3d/query.c +++ b/dlls/wined3d/query.c @@ -347,7 +347,7 @@ static HRESULT WINAPI IWineD3DEventQueryImpl_GetData(IWineD3DQuery* iface, void if (!query->context) { - ERR("Query not started, returning TRUE.\n"); + TRACE("Query not started, returning TRUE.\n"); *data = TRUE; return S_OK;
participants (1)
-
Alexandre Julliard