qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 09/10] tcp_close(): check for close() errors too


From: Eduardo Habkost
Subject: Re: [Qemu-devel] [PATCH 09/10] tcp_close(): check for close() errors too
Date: Thu, 10 Nov 2011 10:36:26 -0200
User-agent: Mutt/1.5.21 (2010-09-15)

On Thu, Nov 10, 2011 at 04:21:46PM +0800, Dong Xu Wang wrote:
> >     if (s->fd != -1) {
> > -        close(s->fd);
> > +        if (close(s->fd) < 0)
> > +            r = -errno;
> Braces {} are necessary, or checkpatch.pl will give warnings, also in
> other patches in your series.
> 
> No mistake, just reminder. :)

I will send v3 with the coding style fixed (I was supposed to fix this
before submitting v2 but I forgot). Thanks!

-- 
Eduardo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]