Skip to content
Snippets Groups Projects
Commit e547e10b authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Make sure dllname doesn't get optimized out (spotted by Marcus

Meissner).
parent 8669193d
No related merge requests found
......@@ -496,7 +496,7 @@ void BuildSpec32File( FILE *outfile )
fprintf( outfile, "}\n" );
fprintf( outfile, "#endif\n" );
fprintf( outfile, "static const char dllname[] = \"%s\";\n\n", dll_file_name );
fprintf( outfile, "const char dllname[] = \"%s\";\n\n", dll_file_name );
fprintf( outfile, "extern int __wine_spec_exports[];\n\n" );
#ifdef __i386__
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment