diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-08-06 16:36:50 +0000 |
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-08-14 20:02:05 +0000 |
| commit | 09c866e34dd6f1725ff5a2354017c13485c2c755 (patch) | |
| tree | 5dd5e6484250d6388453ace46240d210af30df36 /lib/buffer.c | |
| parent | 85cd2f9f9a43d0c536f445cc65b94a8d90bb4c97 (diff) | |
*: rename ferr_zlog -> flog_err_sys
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/buffer.c')
| -rw-r--r-- | lib/buffer.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/buffer.c b/lib/buffer.c index c292e43419..0292c85dac 100644 --- a/lib/buffer.c +++ b/lib/buffer.c @@ -343,11 +343,12 @@ buffer_status_t buffer_flush_window(struct buffer *b, int fd, int width, iov_alloc * sizeof(*iov)); } else { /* This should absolutely never occur. */ - flog_err(LIB_ERR_SYSTEM_CALL, - "%s: corruption detected: iov_small overflowed; " - "head %p, tail %p, head->next %p", - __func__, (void *)b->head, - (void *)b->tail, (void *)b->head->next); + flog_err_sys( + LIB_ERR_SYSTEM_CALL, + "%s: corruption detected: iov_small overflowed; " + "head %p, tail %p, head->next %p", + __func__, (void *)b->head, + (void *)b->tail, (void *)b->head->next); iov = XMALLOC(MTYPE_TMP, iov_alloc * sizeof(*iov)); memcpy(iov, small_iov, sizeof(small_iov)); |
