Skip to content

Commit

Permalink
Per #2278, fix parathesis typo ci-run-unit.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Nov 30, 2022
1 parent c14f3ce commit 3d47cff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/other/pb2nc/pb2nc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1508,14 +1508,14 @@ void process_pbfile(int i_pb) {

// Track of the maximum quality mark for CAPE components
if (is_cape_input && (cape_level == 0) &&
(is_bad_data(cape_qm) || quality_mark > cape_qm) {
(is_bad_data(cape_qm) || quality_mark > cape_qm)) {
cape_qm = quality_mark;
}
}

// Track the maximum quality mark for PBL components
if (do_pbl && (pbl_level == 0) &&
(is_bad_data(pbl_qm) || quality_mark > pbl_qm) {
(is_bad_data(pbl_qm) || quality_mark > pbl_qm)) {
pbl_qm = quality_mark;
}
}
Expand Down

0 comments on commit 3d47cff

Please sign in to comment.