Merge pull request #2144 from jszakmeister/fix-warning-in-release

Fix a couple warnings in the release build.
This commit is contained in:
John Szakmeister
2015-03-20 09:54:06 -04:00
2 changed files with 4 additions and 5 deletions

View File

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