From 57ef9b5c83fd3543a3744e7eec496ff55cd5e968 Mon Sep 17 00:00:00 2001 From: Adrian Matoga Date: Sun, 14 Mar 2021 22:10:20 +0100 Subject: [PATCH] Fix failed assertion when opt l+ is used --- source/app.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/app.d b/source/app.d index 053f713..86c3297 100644 --- a/source/app.d +++ b/source/app.d @@ -2161,7 +2161,7 @@ void assemblyOpt() { break; case 'L': case 'l': - optionListing = readOption() && !pass2; + optionListing = readOption() && pass2; break; case 'O': case 'o':