diff --git a/tools/swift-inspect/Sources/swift-inspect/main.swift b/tools/swift-inspect/Sources/swift-inspect/main.swift index 20e054ebc05f9..2fcf54e85e854 100644 --- a/tools/swift-inspect/Sources/swift-inspect/main.swift +++ b/tools/swift-inspect/Sources/swift-inspect/main.swift @@ -159,10 +159,10 @@ struct UniversalOptions: ParsableArguments { struct BacktraceOptions: ParsableArguments { @Flag(help: "Show the backtrace for each allocation") - var backtrace: Bool + var backtrace: Bool = false @Flag(help: "Show a long-form backtrace for each allocation") - var backtraceLong: Bool + var backtraceLong: Bool = false var style: Backtrace.Style? { backtrace ? .oneLine :