Avoid an unused variable warning in the release build.

This commit is contained in:
John Szakmeister 2015-03-13 15:34:37 -04:00
parent c015eabe13
commit 627d8e4dfe

View File

@ -338,12 +338,12 @@ static void job_err(RStream *rstream, void *data, bool eof)
{ {
size_t count; size_t count;
char buf[256]; char buf[256];
Channel *channel = job_data(data);
while ((count = rstream_pending(rstream))) { while ((count = rstream_pending(rstream))) {
size_t read = rstream_read(rstream, buf, sizeof(buf) - 1); size_t read = rstream_read(rstream, buf, sizeof(buf) - 1);
buf[read] = NUL; buf[read] = NUL;
ELOG("Channel %" PRIu64 " stderr: %s", channel->id, buf); ELOG("Channel %" PRIu64 " stderr: %s",
((Channel *)job_data(data))->id, buf);
} }
} }