userenv/tests: Make userenv_dbgstr_w() static.

This commit is contained in:
Francois Gouget 2008-12-12 10:25:10 +01:00 committed by Alexandre Julliard
parent f5bc44322c
commit 8dbc8d3b9d
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ const char *wine_dbgstr_w( const WCHAR *s )
return default_dbgstr_wn( s, -1, TRUE);
}
const char *userenv_dbgstr_w( const WCHAR *s )
static const char *userenv_dbgstr_w( const WCHAR *s )
{
return default_dbgstr_wn( s, -1, FALSE);
}