Commit 5d80ee4b authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 55ba6262
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment