Skip to content

Commit

Permalink
Merge Pull Request #12041 from trilinos/Trilinos/gsjaardema-patch-1
Browse files Browse the repository at this point in the history
Automatically Merged using Trilinos Pull Request AutoTester
PR Title: APREPRO: Fix "if" instead of "else if" in arg parsing
PR Author: gsjaardema
  • Loading branch information
trilinos-autotester authored Jul 12, 2023
2 parents d23ec7c + 12401cf commit ab6f880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/seacas/libraries/aprepro_lib/apr_aprepro.cc
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ namespace SEAMS {
else if (match_option(option, "dumpvars_json", "J", 13)) {
ap_options.dumpvars_json = true;
}
if (match_option(option, "dumpvars", "D", 4)) {
else if (match_option(option, "dumpvars", "D", 4)) {
ap_options.dumpvars = true;
}
else if (match_option(option, "version", "v", 3)) {
Expand Down

0 comments on commit ab6f880

Please sign in to comment.