Commit 7a71c5d3 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent ab9f0289
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#define NET_START 0001 #define NET_START 0001
#define NET_STOP 0002 #define NET_STOP 0002
int output_string(int msg, ...) static int output_string(int msg, ...)
{ {
char msg_buffer[8192]; char msg_buffer[8192];
va_list arguments; va_list arguments;
...@@ -37,7 +37,7 @@ int output_string(int msg, ...) ...@@ -37,7 +37,7 @@ int output_string(int msg, ...)
return 0; return 0;
} }
BOOL output_error_string(DWORD error) static BOOL output_error_string(DWORD error)
{ {
LPSTR pBuffer; LPSTR pBuffer;
if (FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM | if (FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM |
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment