From 305cb0aa0903fad302131f3bec284810b030c551 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Wed, 21 Oct 2015 09:00:13 +0000 Subject: [PATCH] [WININET] - Missing the USERPROFILE variable is a critical bug, so inform us about it with an ERR instead of a TRACE CORE-10381 svn path=/trunk/; revision=69634 --- reactos/dll/win32/wininet/urlcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/wininet/urlcache.c b/reactos/dll/win32/wininet/urlcache.c index 45137bd9255..e78b9aa4019 100644 --- a/reactos/dll/win32/wininet/urlcache.c +++ b/reactos/dll/win32/wininet/urlcache.c @@ -750,7 +750,7 @@ static void cache_containers_init(void) /* ReactOS r50916 */ if (GetEnvironmentVariableW(UserProfile, NULL, 0) == 0 && GetLastError() == ERROR_ENVVAR_NOT_FOUND) { - TRACE("Environment variable 'USERPROFILE' does not exist!\n"); + ERR("Environment variable 'USERPROFILE' does not exist!\n"); return; } -- 2.17.1