aboutsummaryrefslogtreecommitdiff
path: root/lib/std/debug
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-02-22 20:10:16 -0500
committerGitHub <noreply@github.com>2025-02-22 20:10:16 -0500
commit6769806213ab28ed629221085325d8f143e515b0 (patch)
treee621eb6aa4ab49bb72018d33c373b258f55922df /lib/std/debug
parentb6a1fdd3fa167878f75b4f12ac170d1a10e4e9a2 (diff)
parenteb3c7f570601a6e00cbf03f0a026b3493887a534 (diff)
downloadzig-6769806213ab28ed629221085325d8f143e515b0.tar.gz
zig-6769806213ab28ed629221085325d8f143e515b0.zip
Merge pull request #21727 from 87flowers/fmt-render2
std/zig/render: Rewrite indentation
Diffstat (limited to 'lib/std/debug')
-rw-r--r--lib/std/debug/SelfInfo.zig18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/std/debug/SelfInfo.zig b/lib/std/debug/SelfInfo.zig
index 0bd3f2d41b..ea7ecac4ed 100644
--- a/lib/std/debug/SelfInfo.zig
+++ b/lib/std/debug/SelfInfo.zig
@@ -689,15 +689,15 @@ pub const Module = switch (native_os) {
const o_file_path = mem.sliceTo(self.strings[symbol.ofile..], 0);
const o_file_info = self.ofiles.getPtr(o_file_path) orelse
(self.loadOFile(allocator, o_file_path) catch |err| switch (err) {
- error.FileNotFound,
- error.MissingDebugInfo,
- error.InvalidDebugInfo,
- => return .{
- .relocated_address = relocated_address,
- .symbol = symbol,
- },
- else => return err,
- });
+ error.FileNotFound,
+ error.MissingDebugInfo,
+ error.InvalidDebugInfo,
+ => return .{
+ .relocated_address = relocated_address,
+ .symbol = symbol,
+ },
+ else => return err,
+ });
return .{
.relocated_address = relocated_address,