| author | |
| committer | |
| log | 33c4ad7f3a79aad5d7ea481ac98b42dc9f469076 |
| tree | b7d2bf868a178ac67ea853b5dfde1755cd73a12b |
| parent | 3ab4d112e001398e6ba60a0497ecf9265d49f157 |
Add missing std to use of std.io.getStdErr in the function dump
so that it compiles.1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/json.zig+1-1| ... | ... | @@ -1293,7 +1293,7 @@ pub const Value = union(enum) { |
| 1293 | 1293 | var held = std.debug.getStderrMutex().acquire(); |
| 1294 | 1294 | defer held.release(); |
| 1295 | 1295 | |
| 1296 | const stderr = io.getStdErr().writer(); | |
| 1296 | const stderr = std.io.getStdErr().writer(); | |
| 1297 | 1297 | std.json.stringify(self, std.json.StringifyOptions{ .whitespace = null }, stderr) catch return; |
| 1298 | 1298 | } |
| 1299 | 1299 | }; |