Module: wine Branch: master Commit: dcb1602124774408b1718dc41f03caf67e371f49 URL: https://gitlab.winehq.org/wine/wine/-/commit/dcb1602124774408b1718dc41f03caf...
Author: Rémi Bernon rbernon@codeweavers.com Date: Wed Sep 6 08:58:26 2023 +0200
makedep: Fix a string format specifier typo.
---
tools/makedep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/makedep.c b/tools/makedep.c index 7898fd04294..8495d93d8c6 100644 --- a/tools/makedep.c +++ b/tools/makedep.c @@ -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;