X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fvlog.c;h=0bd9bd135892b7d26d343f24cc327d02b0b2ad6d;hb=171c54d7461be651eb8ef88b2b6fe75bd9dca28a;hp=683cdfcf02ac00dbe50cb5dce52bc2410cd23749;hpb=8812ec2cdde70b6fae5163c65c7706bed08190c7;p=sliver-openvswitch.git diff --git a/lib/vlog.c b/lib/vlog.c index 683cdfcf0..0bd9bd135 100644 --- a/lib/vlog.c +++ b/lib/vlog.c @@ -892,7 +892,7 @@ vlog_write_file(struct ds *s) vlog_async_write_request_cb, NULL, NULL); vlog_async_inited = true; } else { - write(log_fd, s->string, s->length); + ignore(write(log_fd, s->string, s->length)); } } @@ -918,6 +918,6 @@ vlog_async_write_request_cb(struct ofpbuf *request, } if (request->size > 0) { - write(log_fd, request->data, request->size); + ignore(write(log_fd, request->data, request->size)); } }