Module: wine Branch: master Commit: f720ccdc282d5937d91d423b8d163d78079bee84 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f720ccdc282d5937d91d423b8d...
Author: Francois Gouget fgouget@free.fr Date: Thu Sep 8 12:18:04 2011 +0200
attrib: Make ATTRIB_wprintf() static.
---
programs/attrib/attrib.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/attrib/attrib.c b/programs/attrib/attrib.c index 33bf3c4..0ca64c3 100644 --- a/programs/attrib/attrib.c +++ b/programs/attrib/attrib.c @@ -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;