commit | b95636c52fbb058a39548bcbc4e86456ebbd7b7b | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Tue Dec 19 23:36:04 2006 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Tue Dec 19 23:36:04 2006 +0000 |
tree | 0f82f8e3d225f3bcefdbf7070ae0716f1b309630 | |
parent | 2375d75f3267e6e4370f221fea485eac8e73d402 [diff] |
remove casts from xmalloc()
diff --git a/sysklogd/logread.c b/sysklogd/logread.c index 9cc6561..745f976 100644 --- a/sysklogd/logread.c +++ b/sysklogd/logread.c
@@ -117,7 +117,7 @@ log_len = buf->tail - i; if (log_len < 0) log_len += buf->size; - buf_data = (char *)xmalloc(log_len); + buf_data = xmalloc(log_len); if (buf->tail < i) { memcpy(buf_data, buf->data+i, buf->size-i);