From 284683a24e2f2d561b852e30a3ce8325bd84b551 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Sun, 18 Mar 2007 22:14:06 +0100 Subject: [PATCH] netapi32: Downgrade another WARN and ERR to a TRACE. --- dlls/netapi32/access.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/netapi32/access.c b/dlls/netapi32/access.c index f63a35cbd34..804b629b28f 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; }