From 0a05a874360a4af240c5cc51f8ffc10a2b61b67d Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Sun, 25 Nov 2007 18:05:43 -0600 Subject: [PATCH] msi: Downgrade an ERR to a WARN. --- dlls/msi/format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/format.c b/dlls/msi/format.c index 41d4a473edd..4cc5ed41d87 100644 --- a/dlls/msi/format.c +++ b/dlls/msi/format.c @@ -192,7 +192,7 @@ static LPWSTR deformat_environment(MSIPACKAGE* package, LPCWSTR key, } else { - ERR("Unknown environment variable %s\n", debugstr_w(key)); + WARN("Unknown environment variable %s\n", debugstr_w(key)); *chunk = 0; value = NULL; }