Commit ee324e69 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

setupapi: Downgrade an ERR to a WARN.

parent 53b74b0d
...@@ -175,7 +175,7 @@ const WCHAR *DIRID_get_string( int dirid ) ...@@ -175,7 +175,7 @@ const WCHAR *DIRID_get_string( int dirid )
{ {
for (i = 0; i < nb_user_dirids; i++) for (i = 0; i < nb_user_dirids; i++)
if (user_dirids[i].id == dirid) return user_dirids[i].str; if (user_dirids[i].id == dirid) return user_dirids[i].str;
ERR("user id %d not found\n", dirid ); WARN("user id %d not found\n", dirid );
return NULL; return NULL;
} }
else if (dirid >= MIN_CSIDL_DIRID) else if (dirid >= MIN_CSIDL_DIRID)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment