winegcc: Add a trailing linefeed to an error() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-03-02 20:11:53 +01:00 committed by Alexandre Julliard
parent 55ba6262d2
commit 5d80ee4b60
1 changed files with 1 additions and 1 deletions

View File

@ -1679,7 +1679,7 @@ int main(int argc, char **argv)
strarray_add( opts.args, argv[i] );
continue;
}
if ((fstat( fd, &st ) == -1)) error( "Cannot stat %s", argv[i] + 1 );
if ((fstat( fd, &st ) == -1)) error( "Cannot stat %s\n", argv[i] + 1 );
if (st.st_size)
{
input_buffer = xmalloc( st.st_size + 1 );