net: Make output_string() and output_error_string() static.

Francois Gouget fgouget at free.fr
Sat Dec 13 05:04:28 CST 2008


---
 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 |
-- 
1.5.6.5




More information about the wine-patches mailing list