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:
parent
299a1382b9
commit
20ab4b395f
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue