1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-05 17:28:47 +00:00

winegcc: Fix an uninitialized variable warning in the PE build.

This commit is contained in:
Alexandre Julliard 2023-06-12 13:20:18 +02:00
parent cc2cfb9b79
commit 834f7b2366

View File

@ -305,24 +305,18 @@ static struct strarray build_tool_name( struct options *opts, enum tool tool )
static struct strarray get_translator(struct options *opts)
{
enum tool tool;
switch(opts->processor)
{
case proc_cpp:
tool = TOOL_CPP;
break;
return build_tool_name( opts, TOOL_CPP );
case proc_cc:
case proc_as:
tool = TOOL_CC;
break;
return build_tool_name( opts, TOOL_CC );
case proc_cxx:
tool = TOOL_CXX;
break;
default:
assert(0);
return build_tool_name( opts, TOOL_CXX );
}
return build_tool_name( opts, tool );
assert(0);
return empty_strarray;
}
static int try_link( struct strarray prefix, struct strarray link_tool, const char *cflags )