Module: wine Branch: master Commit: 7a71c5d3e3a14b542a23ee10d9342be837918b54 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7a71c5d3e3a14b542a23ee10d9...
Author: Francois Gouget fgouget@free.fr Date: Sat Dec 13 12:04:28 2008 +0100
net: Make output_string() and output_error_string() static.
---
programs/net/net.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/programs/net/net.c b/programs/net/net.c index 30337a6..89279fd 100644 --- a/programs/net/net.c +++ b/programs/net/net.c @@ -25,7 +25,7 @@ #define NET_START 0001 #define NET_STOP 0002
-int output_string(int msg, ...) +static int output_string(int msg, ...) { char msg_buffer[8192]; va_list arguments; @@ -37,7 +37,7 @@ int output_string(int msg, ...) return 0; }
-BOOL output_error_string(DWORD error) +static BOOL output_error_string(DWORD error) { LPSTR pBuffer; if (FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM |