Merge remote-tracking branch 'refs/remotes/origin/master'

This commit is contained in:
Quinn Evans 2015-09-27 15:09:57 -06:00
commit b57a27e08b
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ void channel_from_cobol(void)
void channel_to_cobol(void)
{
char *c;
for(c = msg_body; *c; c++);
for(c = msg_body; *c; c++) {
*c = toupper(*c);
}
memset(c, ' ', msg_body_len - strlen(msg_body));