attrib: Make ATTRIB_wprintf() static.

This commit is contained in:
Francois Gouget 2011-09-08 12:18:04 +02:00 committed by Alexandre Julliard
parent 712276c7bf
commit f720ccdc28
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ static WCHAR *ATTRIB_LoadMessage(UINT id) {
* and hence required WriteConsoleW to output it, however if file i/o is
* redirected, it needs to be WriteFile'd using OEM (not ANSI) format
* ========================================================================= */
int ATTRIB_wprintf(const WCHAR *format, ...) {
static int ATTRIB_wprintf(const WCHAR *format, ...) {
static WCHAR *output_bufW = NULL;
static char *output_bufA = NULL;