Skip to content

Commit

Permalink
(issue #310) corrected misstyped assignment
Browse files Browse the repository at this point in the history
I accidentally wrote + instead of +=.
  • Loading branch information
Chandler Haukap committed Jun 14, 2019
1 parent 2deb521 commit d9115ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ST_grid.c
Original file line number Diff line number Diff line change
Expand Up @@ -3524,7 +3524,7 @@ void Output_AllCellAvgBmass(const char * filename){
if(BmassFlags.dist) dist += gridCells[i][j]._Dist->s[year].nobs;
if(BmassFlags.grpb) {
if(BmassFlags.wildfire){
wildfire + gridCells[i][j]._Gwf->wildfire[year];
wildfire += gridCells[i][j]._Gwf->wildfire[year];
}
ForEachGroup(rg){
grp[rg] += gridCells[i][j]._Grp[rg].s[year].ave;
Expand Down

0 comments on commit d9115ed

Please sign in to comment.