Module: wine Branch: master Commit: 240d8ed7e96ccf140543cc5c24124c8c6f481a60 URL: http://source.winehq.org/git/wine.git/?a=commit;h=240d8ed7e96ccf140543cc5c24...
Author: Sebastian Lackner sebastian@fds-team.de Date: Tue Apr 26 00:06:52 2016 +0200
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
---
server/completion.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/server/completion.c b/server/completion.c index 4069c0c..8b8983a 100644 --- a/server/completion.c +++ b/server/completion.c @@ -104,7 +104,7 @@ static void completion_dump( struct object *obj, int verbose ) struct completion *completion = (struct completion *) obj;
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 )