Skip to content

Commit

Permalink
#1844 correctedb for loop end condition on processing obs bdata
Browse files Browse the repository at this point in the history
  • Loading branch information
Howard Soh committed Jan 21, 2022
1 parent b8e0de3 commit 29d479f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion met/src/tools/core/ensemble_stat/ensemble_stat.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1164,7 +1164,7 @@ void process_point_obs(int i_nc) {
if (!status) exit(1);

// Process each observation in the file
for(int i_offset=0; i_offset<buf_size; i_offset++) {
for(int i_offset=0; i_offset<buf_size2; i_offset++) {
int hdr_idx;
i_obs = i_start + i_offset;

Expand Down

0 comments on commit 29d479f

Please sign in to comment.