Change the ARTS_Init() error message from an ERR() to a WARN() since

it can happen in perfectly normal conditions.
This commit is contained in:
Francois Gouget 2004-06-15 20:25:11 +00:00 committed by Alexandre Julliard
parent 299a1382b9
commit 20ab4b395f
1 changed files with 1 additions and 1 deletions

View File

@ -357,7 +357,7 @@ LONG ARTS_WaveInit(void)
if ((errorcode = ARTS_Init()) < 0)
{
ERR("arts_init() failed (%d)\n", errorcode);
WARN("arts_init() failed (%d)\n", errorcode);
return -1;
}