| author | |
| committer | |
| log | 24d718e7ebcf9b13044ead80510c6c703eebd929 |
| tree | c5a50a3da8f8b5785b56d8648af3e16229be3b80 |
| parent | 6c020cdb767192757b6c4b43e2f14c5394760431 |
| signature |
Fixes the error when using std.vallgrind.callgrind:
error: expected type '[2]u8', found '*const [2:0]u8'1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/valgrind/callgrind.zig+1-1| ... | ... | @@ -2,7 +2,7 @@ const std = @import("../std.zig"); |
| 2 | 2 | const valgrind = std.valgrind; |
| 3 | 3 | |
| 4 | 4 | pub const CallgrindClientRequest = enum(usize) { |
| 5 | DumpStats = valgrind.ToolBase("CT"), | |
| 5 | DumpStats = valgrind.ToolBase("CT".*), | |
| 6 | 6 | ZeroStats, |
| 7 | 7 | ToggleCollect, |
| 8 | 8 | DumpStatsAt, |