services: Make find_service_by_group() static.

This commit is contained in:
Francois Gouget 2011-03-16 08:29:47 +01:00 committed by Alexandre Julliard
parent ca988fa401
commit ba3542bca7

View File

@ -1212,7 +1212,7 @@ DWORD svcctl_EnumServicesStatusW(
return ERROR_SUCCESS;
}
struct service_entry *find_service_by_group(struct scmdatabase *db, const WCHAR *group)
static struct service_entry *find_service_by_group(struct scmdatabase *db, const WCHAR *group)
{
struct service_entry *service;
LIST_FOR_EACH_ENTRY(service, &db->services, struct service_entry, entry)