server: Make free_object() static.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2020-02-14 12:10:19 -06:00 committed by Alexandre Julliard
parent 131801fc70
commit 2b9c7f8bfb
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ void *alloc_object( const struct object_ops *ops )
}
/* free an object once it has been destroyed */
void free_object( struct object *obj )
static void free_object( struct object *obj )
{
free( obj->sd );
#ifdef DEBUG_OBJECTS