@@ -156,7 +156,7 @@ fn getDllIncludes(dll_name: DllName) *const DllIncludes {
156156
157157fn logUnlinkableFunction (name : []const u8 , path : []const u16 ) void {
158158 @branchHint (.cold );
159- logger .warn ("Failed to locate function {s} in {s }" , .{ name , std .unicode .fmtUtf16Le (path ) });
159+ logger .warn ("Failed to locate function {s} in {f }" , .{ name , std .unicode .fmtUtf16Le (path ) });
160160}
161161
162162fn loadFunctions (dll : std.os.windows.HMODULE , path : []const u16 , dll_name : DllName ) void {
@@ -208,10 +208,10 @@ pub fn loadProxy(module: std.os.windows.HMODULE) !void {
208208 const module_name = paths .getFileName (u16 , module_path );
209209
210210 const dll_name = findDllMatch (module_name ) orelse {
211- logger .debug ("{} is not supported for proxying" , .{std .unicode .fmtUtf16Le (module_name )});
211+ logger .debug ("{f } is not supported for proxying" , .{std .unicode .fmtUtf16Le (module_name )});
212212 return error .UnsupportedName ;
213213 };
214- logger .debug ("Detected injection as supported proxy {}. Loading actual." , .{std .unicode .fmtUtf16Le (module_name )});
214+ logger .debug ("Detected injection as supported proxy {f }. Loading actual." , .{std .unicode .fmtUtf16Le (module_name )});
215215
216216 // sys_len includes null-terminator
217217 const sys_len = std .os .windows .kernel32 .GetSystemDirectoryW (empty (u16 ), 0 );
@@ -226,7 +226,7 @@ pub fn loadProxy(module: std.os.windows.HMODULE) !void {
226226 sys_full_path_buf [sys_len + module_name .len ] = 0 ;
227227 const sys_full_path = sys_full_path_buf [0 .. sys_len + module_name .len :0 ];
228228
229- logger .debug ("Looking for actual DLL at {}" , .{std .unicode .fmtUtf16Le (sys_full_path )});
229+ logger .debug ("Looking for actual DLL at {f }" , .{std .unicode .fmtUtf16Le (sys_full_path )});
230230
231231 const handle = try std .os .windows .LoadLibraryW (sys_full_path );
232232
0 commit comments