Fixed failure to revert change.

This commit is contained in:
Quinn Evans 2015-09-27 14:03:27 -06:00
parent 14c5d84fe7
commit 0ddcd41845
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,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));