Skip to content

Commit

Permalink
Merge pull request pyswmm#47 from LRossman/patch-2
Browse files Browse the repository at this point in the history
Avoid compiler warnings
  • Loading branch information
michaeltryby authored Jul 7, 2020
2 parents 01eed49 + 9b30662 commit ee0b72a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solver/swmm5.c
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ void writecon(char *s)
// Purpose: writes string of characters to the console.
//
{
fprintf(stdout,s);
fprintf(stdout,"%s",s);
fflush(stdout);
}

Expand Down

0 comments on commit ee0b72a

Please sign in to comment.