| author | |
| committer | |
| log | ffb0050d811ba7c79d7781cc908a499e4c95d4e3 |
| tree | 057554a159d34cfb374eddaec2c2a8a2ff4c6248 |
| parent | 416bf1de47154ba781082163f8a3509fa3916482 |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/Io/Writer.zig+1-1| ... | ... | @@ -1161,7 +1161,7 @@ pub fn printValue( |
| 1161 | 1161 | }, |
| 1162 | 1162 | 't' => switch (@typeInfo(T)) { |
| 1163 | 1163 | .error_set => return w.alignBufferOptions(@errorName(value), options), |
| 1164 | .@"enum", .@"union" => return w.alignBufferOptions(@tagName(value), options), | |
| 1164 | .@"enum", .enum_literal, .@"union" => return w.alignBufferOptions(@tagName(value), options), | |
| 1165 | 1165 | else => invalidFmtError(fmt, value), |
| 1166 | 1166 | }, |
| 1167 | 1167 | else => {}, |