remove useless casts (type*) xzalloc(...)

This commit is contained in:
Denis Vlasenko
2006-12-22 18:37:07 +00:00
parent a6df5907d2
commit 4cccc03768
7 changed files with 13 additions and 16 deletions

View File

@@ -1377,7 +1377,7 @@ static int busy_loop(FILE * input)
}
else {
free(command);
command = (char *) xzalloc(BUFSIZ);
command = xzalloc(BUFSIZ);
next_command = NULL;
}
} else {