mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2024-11-21 17:09:06 -07:00
makedep: Fix a string format specifier typo.
This commit is contained in:
parent
a6ff01f36f
commit
dcb1602124
Notes:
Alexandre Julliard
2023-09-06 23:03:58 +02:00
Approved-by: Alexandre Julliard (@julliard) Merge-Request: https://gitlab.winehq.org/wine/wine/-/merge_requests/3739
1 changed files with 1 additions and 1 deletions
|
@ -3078,7 +3078,7 @@ static void output_source_testdll( struct makefile *make, struct incl_file *sour
|
|||
struct strarray default_imports = empty_strarray;
|
||||
struct strarray all_libs, dep_libs;
|
||||
const char *dll_name, *obj_name, *res_name, *output_rsrc, *output_file, *debug_file, *ext = ".dll";
|
||||
struct incl_file *spec_file = find_src_file( make, strmake( "%.spec", obj ));
|
||||
struct incl_file *spec_file = find_src_file( make, strmake( "%s.spec", obj ));
|
||||
unsigned int arch;
|
||||
|
||||
if (!imports.count) imports = make->imports;
|
||||
|
|
Loading…
Reference in a new issue