server: Add missing linebreak to a dump message.
Signed-off-by: Sebastian Lackner <sebastian@fds-team.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
ea18c740f7
commit
240d8ed7e9
|
@ -104,7 +104,7 @@ static void completion_dump( struct object *obj, int verbose )
|
||||||
struct completion *completion = (struct completion *) obj;
|
struct completion *completion = (struct completion *) obj;
|
||||||
|
|
||||||
assert( obj->ops == &completion_ops );
|
assert( obj->ops == &completion_ops );
|
||||||
fprintf( stderr, "Completion depth=%u", completion->depth );
|
fprintf( stderr, "Completion depth=%u\n", completion->depth );
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct object_type *completion_get_type( struct object *obj )
|
static struct object_type *completion_get_type( struct object *obj )
|
||||||
|
|
Loading…
Reference in New Issue