Commit 4343c9e1 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

winegcc: Add a trailing '\n' to the try_link() test file.

This stops the tested gcc command from issuing a warning on Solaris.
parent 93f77f46
......@@ -337,7 +337,7 @@ static int try_link( const strarray *prefix, const strarray *link_tool, const ch
strarray *link = strarray_dup( link_tool );
int ret;
create_file( in, 0644, "int main(void){return 1;}" );
create_file( in, 0644, "int main(void){return 1;}\n" );
strarray_add( link, "-o" );
strarray_add( link, out );
......
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