We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33b1678 commit eb7983aCopy full SHA for eb7983a
std/debug/index.zig
@@ -9,6 +9,7 @@ const ArrayList = std.ArrayList;
9
const builtin = @import("builtin");
10
11
const execinfo = @cImport(@cInclude("execinfo.h"));
12
+const printf = @cImport(@cInclude("stdio.h")).printf;
13
14
pub const FailingAllocator = @import("failing_allocator.zig").FailingAllocator;
15
@@ -263,7 +264,7 @@ pub fn openSelfDebugInfo(allocator: &mem.Allocator) !&ElfStackTrace {
263
264
265
var i:i32 = 0;
266
while (i < frames):(i += 1) {
- warn("{}\n", (??strs)[usize(i)]);
267
+ _ = printf(c"%s\n", ??(??strs)[usize(i)]);
268
}
269
return error.TodoSupportMachoDebugInfo;
270
},
0 commit comments