Commit de72e97f authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

advapi32/tests: Make cb_{running,stopped}() static.

parent 119e20a8
......@@ -2202,7 +2202,7 @@ struct notify_data {
SC_HANDLE svc;
};
void CALLBACK cb_stopped(void *user)
static void CALLBACK cb_stopped(void *user)
{
struct notify_data *data = user;
BOOL br;
......@@ -2218,7 +2218,7 @@ void CALLBACK cb_stopped(void *user)
ok(br, "StartService failed: %u\n", GetLastError());
}
void CALLBACK cb_running(void *user)
static void CALLBACK cb_running(void *user)
{
struct notify_data *data = user;
BOOL br;
......
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