Remove unused variable.

This commit is contained in:
Tim Kientzle 2009-12-28 03:14:30 +00:00
parent 6f1d1a5084
commit 4ffba49a6f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=201104

View file

@ -230,11 +230,9 @@ static int
archive_compressor_program_write(struct archive_write *a, const void *buff,
size_t length)
{
struct private_data *state;
ssize_t ret;
const char *buf;
state = (struct private_data *)a->compressor.data;
if (a->client_writer == NULL) {
archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
"No write callback is registered? "