From b8bce0158e86f2f663feff65724e1593ee416d64 Mon Sep 17 00:00:00 2001 From: Matthew Wells <76452933+mattheww95@users.noreply.github.com> Date: Fri, 4 Mar 2022 09:25:37 -0600 Subject: [PATCH] fixed compile error added break statement to switch statement parsing help options --- src/fasta_formatter/fasta_formatter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fasta_formatter/fasta_formatter.cpp b/src/fasta_formatter/fasta_formatter.cpp index bc5f35c..c20262d 100644 --- a/src/fasta_formatter/fasta_formatter.cpp +++ b/src/fasta_formatter/fasta_formatter.cpp @@ -103,6 +103,7 @@ void parse_command_line(int argc, char* argv[]) switch(opt) { case 'h': usage(); + break; case 'i': input_filename = optarg;