Remove two un-needed type casts

This commit is contained in:
Erik de Castro Lopo 2016-05-28 16:35:45 +10:00
parent 6554a8d63c
commit 10e429b85d
1 changed files with 2 additions and 2 deletions

View File

@ -162,8 +162,8 @@ process_data_init (char *buf, char *cmd, char *word[],
word[0] = "\000\000";
word_eol[0] = "\000\000";
word[1] = (char *)buf;
word_eol[1] = (char *)cmd;
word[1] = buf;
word_eol[1] = cmd;
while (1)
{