Skip to content

Commit

Permalink
Eliminate compile warnings
Browse files Browse the repository at this point in the history
- eliminate compile warnings
* warning: assignment makes integer from pointer without a cast
[-Wint-conversion]
  • Loading branch information
dschlaep committed Dec 5, 2017
1 parent 4f03e2c commit 7d5eee8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SW_Output.c
Original file line number Diff line number Diff line change
Expand Up @@ -3818,8 +3818,8 @@ static void sumof_ves(SW_VEGESTAB *v, SW_VEGESTAB_OUTPUTS *s, OutKey k)

tmp1 = (int) v->count + (int) k;
tmp1 += tmp1;
tmp2 = (TimeInt) s->days;
tmp2 += tmp2;
tmp2 = *(s->days);
tmp2 = tmp2;
return;
}

Expand Down

0 comments on commit 7d5eee8

Please sign in to comment.