mirror of
https://github.com/ziglang/zig.git
synced 2024-11-30 09:02:32 +00:00
std.valgrind.callgrind: fix string type
Fixes the error when using std.vallgrind.callgrind: error: expected type '[2]u8', found '*const [2:0]u8'
This commit is contained in:
parent
6c020cdb76
commit
24d718e7eb
@ -2,7 +2,7 @@ const std = @import("../std.zig");
|
||||
const valgrind = std.valgrind;
|
||||
|
||||
pub const CallgrindClientRequest = enum(usize) {
|
||||
DumpStats = valgrind.ToolBase("CT"),
|
||||
DumpStats = valgrind.ToolBase("CT".*),
|
||||
ZeroStats,
|
||||
ToggleCollect,
|
||||
DumpStatsAt,
|
||||
|
Loading…
Reference in New Issue
Block a user