Module: wine Branch: master Commit: 284683a24e2f2d561b852e30a3ce8325bd84b551 URL: http://source.winehq.org/git/wine.git/?a=commit;h=284683a24e2f2d561b852e30a3...
Author: Kai Blin kai.blin@gmail.com Date: Sun Mar 18 22:14:06 2007 +0100
netapi32: Downgrade another WARN and ERR to a TRACE.
---
dlls/netapi32/access.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/netapi32/access.c b/dlls/netapi32/access.c index f63a35c..804b629 100644 --- a/dlls/netapi32/access.c +++ b/dlls/netapi32/access.c @@ -553,7 +553,7 @@ NetQueryDisplayInformation( }
default: - ERR("Invalid level %d is specified\n", Level); + TRACE("Invalid level %d is specified\n", Level); return ERROR_INVALID_LEVEL; } return NERR_Success; @@ -690,7 +690,7 @@ NET_API_STATUS WINAPI NetUserModalsGet( *pbuffer = NULL; return NERR_InternalError; default: - WARN("Invalid level %d is specified\n", level); + TRACE("Invalid level %d is specified\n", level); *pbuffer = NULL; return ERROR_INVALID_LEVEL; }