Skip to content

Commit

Permalink
Split message string into two lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
mauzey1 committed Jul 29, 2019
1 parent adc165c commit 0273fef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Src/cmor_variables.c
Original file line number Diff line number Diff line change
Expand Up @@ -1828,7 +1828,8 @@ int cmor_variable(int *var_id, char *name, char *units, int ndims,
cmor_vars[vrid].missing = (double)*(double *)missing;
if (fabs((cmor_vars[vrid].missing/cmor_vars[vrid].omissing)-1) > 0.001) {
snprintf(msg, CMOR_MAX_STRING,
"replaced missing value flag (%g) and corresponding data with standard missing value (%g)",
"replaced missing value flag (%g) and "
"corresponding data with standard missing value (%g)",
cmor_vars[vrid].missing, cmor_vars[vrid].omissing);
cmor_update_history(vrid, msg);
}
Expand Down

0 comments on commit 0273fef

Please sign in to comment.