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

This commit is contained in:
Francois Gouget 2015-02-28 18:31:06 +01:00 committed by Alexandre Julliard
parent 119e20a822
commit de72e97f37
1 changed files with 2 additions and 2 deletions

View File

@ -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;